Skip to content

Commit

Permalink
Update to NumPy 1.26.2 on Python 3.9, 3.10 and 3.11 (closes #1022, cl…
Browse files Browse the repository at this point in the history
…oses #1026)
  • Loading branch information
mhsmith committed Dec 7, 2023
1 parent 9ac93b2 commit 9172f8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion server/pypi/packages/matplotlib/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{% if PY_VER == "3.8" %}
{% set numpy_version = "1.19.5" %}
{% else %}
{% elif PY_VER in ["3.9", "3.10", "3.11"] %}
{% set numpy_version = "1.23.3" %}
{% elif PY_VER == "3.12" %}
{% set numpy_version = "1.26.2" %}
{% endif %}

Expand Down
4 changes: 3 additions & 1 deletion server/pypi/packages/pandas/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{% if PY_VER == "3.8" %}
{% set numpy_version = "1.19.5" %}
{% else %}
{% elif PY_VER in ["3.9", "3.10", "3.11"] %}
{% set numpy_version = "1.23.3" %}
{% elif PY_VER == "3.12" %}
{% set numpy_version = "1.26.2" %}
{% endif %}

Expand Down

0 comments on commit 9172f8c

Please sign in to comment.