Skip to content

Commit

Permalink
Preparation for version increase and upload to pypi.
Browse files Browse the repository at this point in the history
  • Loading branch information
semohr committed Jul 29, 2021
1 parent c191a62 commit 6e883d6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include README.md
include README.md
include requirements.txt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This is a Bayesian python toolbox for inference and forecast of the spread of th
- [**Source code**](https://github.com/Priesemann-Group/covid19_inference)


The latest stable version is [v0.2.0](https://github.com/Priesemann-Group/covid19_inference/tree/v0.2.0)!
The latest stable version is [v0.3.1](https://github.com/Priesemann-Group/covid19_inference/tree/v0.3.1)!


The research article [is available on arXiv](https://arxiv.org/abs/2004.01105) (**updated on April 13 2020**).
Expand Down
2 changes: 1 addition & 1 deletion covid19_inference/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.3.1"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import re

# read the contents of your README file
import os
from os import path

with open("README.md") as f:
Expand Down Expand Up @@ -38,5 +39,5 @@ def parse_requirements(filename):
long_description_content_type="text/markdown",
python_requires=">=3.6.0",
version=verstr,
install_requires=parse_requirements("requirements.txt"),
install_requires=parse_requirements("./requirements.txt"),
)

0 comments on commit 6e883d6

Please sign in to comment.