Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to NumPy 1.22.* #101

Merged
merged 3 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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