Skip to content

Commit f15371c

Browse files
committed
remove pandoc from setup.py
1 parent 64feab2 commit f15371c

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

numpy_fracdiff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.3.2'
1+
__version__ = '0.3.3'
22

33
from .fracdiff_fn import fracdiff

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from setuptools import setup
2-
import pypandoc
32

43

54
def get_version(path):
@@ -15,7 +14,7 @@ def get_version(path):
1514
setup(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
author_email='[email protected]',
@@ -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)

0 commit comments

Comments
 (0)