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
+
1
6
# 0.3.1 / 2021-04-08
2
7
3
8
* 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
37
37
* Jupyter for the examples: ` jupyter lab `
38
38
* Check syntax: ` flake8 --ignore=F401 --exclude=$(grep -v '^#' .gitignore | xargs | sed -e 's/ /,/g') `
39
39
* Run Unit Tests: ` pytest `
40
+ * Create README.rst: ` pandoc README.md --from markdown --to rst -s -o README.rst `
40
41
* Upload to PyPi with twine: ` python setup.py sdist && twine upload -r pypi dist/* `
41
42
42
43
### Clean up
Original file line number Diff line number Diff line change 1
- __version__ = '0.3.2 '
1
+ __version__ = '0.3.3 '
2
2
3
3
from .fracdiff_fn import fracdiff
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
- import pypandoc
3
2
4
3
5
4
def get_version (path ):
@@ -15,7 +14,7 @@ def get_version(path):
15
14
setup (name = 'numpy-fracdiff' ,
16
15
version = get_version ("numpy_fracdiff/__init__.py" ),
17
16
description = 'Fractional Difference for Time Series' ,
18
- long_description = pypandoc . convert ( 'README.md' , ' rst') ,
17
+ long_description = 'README.rst' ,
19
18
url = 'http://github.com/ulf1/numpy-fracdiff' ,
20
19
author = 'Ulf Hamster' ,
21
20
@@ -25,4 +24,4 @@ def get_version(path):
25
24
'numpy>=1.18.*,<2' ,
26
25
'numba>=0.48.*' ],
27
26
python_requires = '>=3.6' ,
28
- zip_safe = False )
27
+ zip_safe = True )
You can’t perform that action at this time.
0 commit comments