Skip to content

Commit

Permalink
requirements: update matplotlib requirement from <3.7.6 to <3.10.1 (#…
Browse files Browse the repository at this point in the history
…3145)

Updates the requirements on [matplotlib](https://github.com/matplotlib/matplotlib) to permit the latest version.
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.7.5...v3.10.0)

Restrict win32 matplotlib to < 3.8.0.
Later versions do not provide win32 wheels.

---
updated-dependencies:
- dependency-name: matplotlib
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

---------

Signed-off-by: Jan Vesely <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Jan Vesely <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and jvesely authored Jan 7, 2025
1 parent 3b30abb commit 77e4632
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/actions/install-pnl/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
sed -i /modeci_mdf/d requirements.txt
# pywinpty is a transitive dependency and v1.0+ removed support for x86 wheels
echo "pywinpty<1" >> env_constraints.txt
# jupyter_sever pulls jupyter_server_terminals which depends on in pywinpty >= 2.0.3
# jupyter_server >= 2 pulls jupyter_server_terminals which depends on in pywinpty >= 2.0.3
echo "jupyter_server<2" >> env_constraints.txt
# scipy >=1.9.2 doesn't provide win32 wheel and GA doesn't have working fortran on windows
echo "scipy<1.9.2" >> env_constraints.txt
Expand All @@ -71,6 +71,8 @@ runs:
echo "pandas < 2.1.0" >> env_constraints.txt
# llvmlite >= 0.42.0 doesn't provide win32 wheel
echo "llvmlite < 0.42.0" >> env_constraints.txt
# matplotlib >=3.8.0 doesn't provide win32 wheel
echo "matplotlib < 3.8.0" >> env_constraints.txt
fi
- name: Install updated package
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ graphviz<0.21.0
grpcio<1.70.0
leabra-psyneulink<0.3.3
llvmlite<0.44
matplotlib<3.7.6, >=3.7.0
matplotlib>=3.7.0, <3.10.1
modeci_mdf<0.5, >=0.4.3; (platform_machine == 'AMD64' or platform_machine == 'x86_64' or platform_machine == 'arm64' or platform_machine == 'aarch64') and platform_python_implementation == 'CPython' and implementation_name == 'cpython'
networkx<3.5
numpy>=1.21.0, <1.26.5
Expand Down
2 changes: 1 addition & 1 deletion tutorial_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
graphviz<0.21.0
jupyter<1.1.2
matplotlib<3.7.6
matplotlib<3.10.1

0 comments on commit 77e4632

Please sign in to comment.