Skip to content

Commit 1ee9ae7

Browse files
committed
updated descr, packaging settings, bumped up version
1 parent 2630ae4 commit 1ee9ae7

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

DESCRIPTION.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22
mchmm
33
=====
44

5-
.. image:: https://travis-ci.org/maximtrp/mchmm.svg?branch=master
6-
:target: https://travis-ci.org/maximtrp/mchmm
5+
.. image:: https://readthedocs.org/projects/mchmm/badge/?version=latest
6+
:target: https://mchmm.readthedocs.io/en/latest/?badge=latest
77
.. image:: https://img.shields.io/github/issues/maximtrp/mchmm.svg
88
:target: https://github.com/maximtrp/mchmm/issues
9+
.. image:: https://codecov.io/gh/maximtrp/mchmm/branch/master/graph/badge.svg
10+
:target: https://codecov.io/gh/maximtrp/mchmm
11+
.. image:: https://app.codacy.com/project/badge/Grade/d7881a827eb9473d89aa1fc10fdd855e
12+
:target: https://www.codacy.com/gh/maximtrp/mchmm/dashboard
13+
.. image:: https://static.pepy.tech/badge/mchmm
14+
:target: https://pepy.tech/project/mchmm
15+
.. image:: https://img.shields.io/pypi/v/mchmm.svg
16+
:target: https://pypi.python.org/pypi/mchmm
917

1018

1119
*mchmm* is a Python package implementing Markov chains and Hidden Markov models in pure NumPy and SciPy.

mchmm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.4.4"
1+
__version__ = "0.4.5"
22
__all__ = ['MarkovChain', 'HiddenMarkovModel']
33

44
from ._hmm import * # noqa

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "mchmm"
77
dynamic = ["version"]
88
description = "Markov chains and Hidden Markov models"
99
readme = "DESCRIPTION.rst"
10-
requires-python = ">=3.6"
10+
requires-python = ">=3.9"
1111
keywords = ["statistics", "markov chains", "hidden markov models"]
1212
license.file = "LICENSE"
1313
authors = [{ name = "Maksim Terpilovskii", email = "maximtrp@gmail.com" }]
@@ -20,13 +20,11 @@ classifiers = [
2020
"Topic :: Scientific/Engineering :: Mathematics",
2121
"License :: OSI Approved :: MIT License",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.6",
24-
"Programming Language :: Python :: 3.7",
25-
"Programming Language :: Python :: 3.8",
2623
"Programming Language :: Python :: 3.9",
2724
"Programming Language :: Python :: 3.10",
2825
"Programming Language :: Python :: 3.11",
2926
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
3028
]
3129
urls.homepage = "https://github.com/maximtrp/mchmm"
3230
urls.documentation = "https://mchmm.rtfd.io"

0 commit comments

Comments
 (0)