Skip to content

Commit

Permalink
requiring specific numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
natevm committed Feb 9, 2021
1 parent 2e352fb commit 6277168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
PYEXEC=/opt/python/${{ matrix.python-version }}/bin/python
echo $PYTHONXDOTYMU
$PYEXEC -m pip install numpy==1.20.1
$PYEXEC -m pip install numpy==1.20.0
$PYEXEC -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())"
$PYEXEC -c "import distutils.sysconfig as sysconfig; print(sysconfig.get_config_var('LIBDIR'))"
Expand Down
2 changes: 1 addition & 1 deletion src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def has_ext_modules(foo):
# This package is called nvisii
name='nvisii',

install_requires = ['numpy=1.20.1'],
install_requires = ['numpy=1.20.0'],

packages = ['nvisii', "nvisii.importers"], # include the package "nvisii"

Expand Down

0 comments on commit 6277168

Please sign in to comment.