Skip to content

Commit

Permalink
Fixed numpy requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
kfazi committed Nov 18, 2020
1 parent 751e7fa commit e0e1661
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

numpy_version = '1.17.4'

setuptools.setup(
name='reed_solomon_ccsds',
url='https://github.com/kplabs-pl/reed-solomon-ccsds',
Expand All @@ -25,8 +27,8 @@
],
packages=['reed_solomon_ccsds'],
include_package_data=True,
setup_requires=['setuptools-scm'],
install_requires=['numpy>=1.17.4'],
setup_requires=['setuptools-scm', f'numpy>={numpy_version}'],
install_requires=[f'numpy>={numpy_version}'],
extras_require={
'dev': ['yapf'],
'tests': ['flake8', 'mypy', 'pytest']
Expand Down

0 comments on commit e0e1661

Please sign in to comment.