-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working on Python 3.12: numpy pandas pywavelets kiwisolver contourpy …
…matplotlib
- Loading branch information
Showing
11 changed files
with
133 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
package: | ||
name: contourpy | ||
version: "1.0.5" | ||
version: "1.0.7" | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- pybind11 2.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
package: | ||
name: numpy | ||
version: "1.23.3" | ||
version: "1.26.2" | ||
|
||
build: | ||
number: 0 | ||
script_env: | ||
- SETUPTOOLS_USE_DISTUTILS=local | ||
|
||
requirements: | ||
build: | ||
- Cython 0.29.32 | ||
# NumPy doesn't officially support building with setuptools on Python 3.12, but it | ||
# still works with this version, plus a couple of patches. | ||
- setuptools 69.0.2 | ||
host: | ||
- chaquopy-openblas 0.2.20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
{% if PY_VER == "3.8" %} | ||
{% set numpy_version = "1.19.5" %} | ||
{% else %} | ||
{% set numpy_version = "1.23.3" %} | ||
{% set numpy_version = "1.26.2" %} | ||
{% endif %} | ||
|
||
{% set version = "2.1.3" %} | ||
|
||
package: | ||
name: pandas | ||
version: "1.5.0" | ||
version: "{{ version }}" | ||
|
||
# The setuptools build still works for now, but the sdist on PyPI doesn't include a | ||
# setup.py, and neither does the GitHub "source code" archive. | ||
source: | ||
git_url: https://github.com/pandas-dev/pandas | ||
git_rev: v{{ version }} | ||
|
||
build: | ||
number: 1 | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python | ||
- numpy {{ numpy_version }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ build: | |
|
||
requirements: | ||
host: | ||
- numpy 1.23.3 | ||
- numpy 1.26.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters