Skip to content

Commit 20e2914

Browse files
committed
Bump to 0.0.4 while setting minimum dependency versions
* sklearn 1.0+ requires Python 3.7+ * sklearn's minimum numpy dependency is 1.14.6 * PyYAML 5.1 introduced several backward-incompatile changes that we already adapted, including: - yaml/pyyaml#254 - yaml/pyyaml#256
1 parent 4715b32 commit 20e2914

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33
DISTNAME = 'prelims'
4-
VERSION = '0.0.3'
4+
VERSION = '0.0.4'
55
DESCRIPTION = 'Front matter post-processor for static site generators'
66
with open('README.md') as f:
77
LONG_DESCRIPTION = f.read()
@@ -45,7 +45,7 @@ def setup_package():
4545
],
4646
packages=find_packages(exclude=['*tests*']),
4747
python_requires='>=3.7', # follow sklearn
48-
install_requires=['numpy', 'scikit_learn', 'PyYAML'],
48+
install_requires=['numpy>=1.14.6', 'scikit_learn>=1.0', 'PyYAML>=5.1'],
4949
)
5050

5151
setup(**metadata)

0 commit comments

Comments
 (0)