Skip to content

Commit

Permalink
Constrain Numpy version ActivitySim#533
Browse files Browse the repository at this point in the history
  • Loading branch information
Clint Daniels committed Jan 4, 2022
1 parent 80310a8 commit 5356a19
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conda-environments/activitysim-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
dependencies:
- python=3.9
- pip
- numpy >= 1.16.1
- numpy >= 1.16.1,<=1.21
- pandas >= 1.1.0
- pyarrow >= 2.0
- openmatrix >= 0.3.4.1
Expand Down
2 changes: 1 addition & 1 deletion conda-environments/activitysim-test-larch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:
dependencies:
- python=${TRAVIS_PYTHON_VERSION}
- pip
- numpy >= 1.16.1
- numpy >= 1.16.1,<=1.21
- pandas >= 1.1.0
- pyarrow >= 2.0
- openmatrix >= 0.3.4.1
Expand Down
2 changes: 1 addition & 1 deletion conda-environments/activitysim-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:
dependencies:
- python=${TRAVIS_PYTHON_VERSION}
- pip
- numpy >= 1.16.1
- numpy >= 1.16.1,<=1.21
- pandas >= 1.1.0
- pyarrow >= 2.0
- openmatrix >= 0.3.4.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
entry_points={'console_scripts': ['activitysim=activitysim.cli.main:main']},
install_requires=[
'pyarrow >= 2.0',
'numpy >= 1.16.1',
'numpy >= 1.16.1,<=1.21',
'openmatrix >= 0.3.4.1',
'pandas >= 1.1.0',
'pyyaml >= 5.1',
Expand Down

0 comments on commit 5356a19

Please sign in to comment.