File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1+ # 0.3.3 / 2020-04-23
2+
3+ * Test multiple python versions
4+ * Installation problems: remove pandoc from setup.py
5+
16# 0.3.1 / 2021-04-08
27
38 * MIT License changed to Apache 2.0
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ pip install -r requirements-demo.txt
3737* Jupyter for the examples: ` jupyter lab `
3838* Check syntax: ` flake8 --ignore=F401 --exclude=$(grep -v '^#' .gitignore | xargs | sed -e 's/ /,/g') `
3939* Run Unit Tests: ` pytest `
40+ * Create README.rst: ` pandoc README.md --from markdown --to rst -s -o README.rst `
4041* Upload to PyPi with twine: ` python setup.py sdist && twine upload -r pypi dist/* `
4142
4243### Clean up
Original file line number Diff line number Diff line change 1- __version__ = '0.3.2 '
1+ __version__ = '0.3.3 '
22
33from .fracdiff_fn import fracdiff
Original file line number Diff line number Diff line change 11from setuptools import setup
2- import pypandoc
32
43
54def get_version (path ):
@@ -15,7 +14,7 @@ def get_version(path):
1514setup (name = 'numpy-fracdiff' ,
1615 version = get_version ("numpy_fracdiff/__init__.py" ),
1716 description = 'Fractional Difference for Time Series' ,
18- long_description = pypandoc . convert ( 'README.md' , ' rst') ,
17+ long_description = 'README.rst' ,
1918 url = 'http://github.com/ulf1/numpy-fracdiff' ,
2019 author = 'Ulf Hamster' ,
2120@@ -25,4 +24,4 @@ def get_version(path):
2524 'numpy>=1.18.*,<2' ,
2625 'numba>=0.48.*' ],
2726 python_requires = '>=3.6' ,
28- zip_safe = False )
27+ zip_safe = True )
You can’t perform that action at this time.
0 commit comments