Skip to content

Commit

Permalink
Bump to 0.0.4 while setting minimum dependency versions
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
takuti committed Jan 15, 2022
1 parent 4715b32 commit 20e2914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

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

setup(**metadata)
Expand Down

0 comments on commit 20e2914

Please sign in to comment.