Skip to content

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
gboehl committed Apr 15, 2023
1 parent 49c22ea commit e42c135
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
python -m pip install ipykernel
python -m pip install grgrlib
# for development versions of grgrjax
python -m pip uninstall -y grgrjax
python -m pip install git+https://github.com/gboehl/grgrjax
#python -m pip uninstall -y grgrjax
#python -m pip install git+https://github.com/gboehl/grgrjax
- name: Test with pytest
run: |
pytest -x
2 changes: 1 addition & 1 deletion econpizza/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/python
# -*- coding: utf-8 -*-

__version__ = '0.5.3'
__version__ = '0.5.4'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ubuntu seems to have issues with jax v0.4.6. Recheck when v0.4.7 is out
jax
jaxlib
grgrjax>=0.4.1
grgrjax>=0.4.3
scipy
pyyaml
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
'linear': ['grgrlib>=0.1.22'],
},
install_requires=[
"jax",
"jaxlib",
"grgrjax>=0.4.1",
"jax<0.4.6",
"jaxlib<0.4.6",
"grgrjax>=0.4.3",
"pyyaml",
"scipy",
],
Expand Down

0 comments on commit e42c135

Please sign in to comment.