Skip to content

Commit

Permalink
Merge pull request #101 from WikiWatershed/tt/100/fix-mmw-installs
Browse files Browse the repository at this point in the history
Closes #100
  • Loading branch information
rajadain authored Jul 9, 2024
2 parents 996f6e3 + 8aa8a91 commit e7cea30
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 44 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Compile AOT functions
run: |
python setup.py build
- name: Test with nosetests
run: |
nosetests --verbosity=2
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ certifi = ">=2021"
funcsigs = "==1.0.2"
llvmlite = "==0.38.*"
pynose = "==1.5.*"
numpy = "==1.21.*"
numpy = "==1.22.*"
numba = "==0.55.*"

[dev-packages]
Expand Down
71 changes: 31 additions & 40 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ $ pip install --no-build-isolation gwlf-e
Ensure you have Python 3.10 and [pipenv](https://pipenv.pypa.io/en/latest/) available. Then run:

```bash
$ pipenv sync
$ pipenv sync --dev
$ pipenv run python setup.py build
```

### Running Locally
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ certifi>=2021
funcsigs==1.0.2
llvmlite==0.38.*
pynose==1.5.*
numpy==1.21.*
numpy==1.22.*
numba==0.55.*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
'funcsigs==1.0.2',
'llvmlite==0.38.*',
'pynose==1.5.*',
'numpy==1.21.*',
'numpy==1.22.*',
'numba==0.55.*',
],
extras_require={
Expand Down

0 comments on commit e7cea30

Please sign in to comment.