Skip to content

Commit

Permalink
Merge pull request #44 from CyrilleBonamy/master
Browse files Browse the repository at this point in the history
support last scipy and numpy
  • Loading branch information
CyrilleBonamy committed Jan 2, 2023
2 parents 546ccae + 24ce309 commit 4f10492
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
version_changed: ${{ steps.check_file_changed.outputs.files_changed }}
steps:
- run: pip install -U pip pipenv coverage
- run: pip install -U numpy==1.21.2 scipy==1.7.3 matplotlib
- run: pip install -U numpy scipy matplotlib
- name: Check out repository code
uses: actions/checkout@v2
- run: set -o pipefail
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
version_changed: ${{ steps.check_file_changed.outputs.files_changed }}
steps:
- run: pip install -U pip pipenv coverage
- run: pip install -U numpy==1.21.2 scipy==1.7.3 matplotlib
- run: pip install -U numpy scipy matplotlib
- name: Check out repository code
uses: actions/checkout@v2
- run: set -o pipefail
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.11
scipy==1.7.3
scipy>=1.7.3
matplotlib>=1.5
wheel
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def readme():
packages=find_packages(exclude=['tutorials']),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['numpy>=1.11', 'scipy==1.7.3',
install_requires=['numpy>=1.11', 'scipy>=1.7.3',
'matplotlib>=1.5'],
# metadata for upload to PyPI
author = "Cyrille Bonamy",
Expand All @@ -33,7 +33,7 @@ def readme():
long_description_content_type="text/markdown",
long_description = readme(),
license = 'GPLv2',
keywords = ["Openfoam", "postprocessing", "CFD"],
keywords = ["Openfoam", "postprocessing", "python", "CFD"],
url = "http://legi.grenoble-inp.fr", # project home page, if any
classifiers=[
# How mature is this project? Common values are
Expand Down

0 comments on commit 4f10492

Please sign in to comment.