Skip to content

Commit

Permalink
Update package requirements (#57)
Browse files Browse the repository at this point in the history
* Updated numpy

* Version bump

* Updated deprecated action

* Updated python test matrix

* More updates to the python testing matrix

* Updated numpy matrix

* Excluding py3.11/numpy1.21 combo

* Let's try again
  • Loading branch information
marcomangano authored Feb 10, 2025
1 parent a4f79f1 commit 97104ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
numpy-version: ["~=1.19.0", "~=1.21.0"]
python-version: [3.9, 3.11]
numpy-version: ["~=1.21.0", "~=1.26.0"]
exclude:
- python-version: 3.11
numpy-version: "~=1.21.0"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion pyxdsm/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.3.0"
__version__ = "2.3.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"pyxdsm",
],
package_data={"pyxdsm": ["*.tex"]},
install_requires=["numpy>=1.16"],
install_requires=["numpy>=1.21"],
python_requires=">=3",
classifiers=[
"Operating System :: OS Independent",
Expand Down

0 comments on commit 97104ba

Please sign in to comment.