From 132a02d849c86e9a9062035c5917c36180420f21 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Tue, 25 Oct 2022 01:21:41 -0700 Subject: [PATCH 1/3] Add Python 3.11 migration --- recipe/migrations/python311.yaml | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 recipe/migrations/python311.yaml diff --git a/recipe/migrations/python311.yaml b/recipe/migrations/python311.yaml new file mode 100644 index 0000000000..1bd9c491b1 --- /dev/null +++ b/recipe/migrations/python311.yaml @@ -0,0 +1,33 @@ +migrator_ts: 1666686085 +__migrator: + migration_number: 1 + operation: key_add + primary_key: python + ordering: + python: + - 3.6.* *_cpython + - 3.7.* *_cpython + - 3.8.* *_cpython + - 3.9.* *_cpython + - 3.10.* *_cpython + - 3.11.* *_cpython # new entry + - 3.6.* *_73_pypy + - 3.7.* *_73_pypy + - 3.8.* *_73_pypy + - 3.9.* *_73_pypy + paused: false + longterm: True + pr_limit: 5 + exclude: + # this shouldn't attempt to modify the python feedstocks + - python + - pypy3.6 + - pypy-meta + +python: + - 3.11.* *_cpython +# additional entries to add for zip_keys +numpy: + - 1.21 +python_impl: + - cpython From 15f54455f576b8ad6e7b306eb1b09c7d0a0f2b2a Mon Sep 17 00:00:00 2001 From: jakirkham Date: Tue, 25 Oct 2022 02:23:00 -0700 Subject: [PATCH 2/3] Drop Python 3.7 --- recipe/conda_build_config.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 4b4df9c865..1deef0fe4a 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -556,7 +556,6 @@ ntl: # we build for the oldest version possible of numpy for forward compatibility numpy: # part of a zip_keys: python, python_impl, numpy - - 1.20 # [not (osx and arm64)] - 1.20 - 1.20 - 1.21 @@ -614,13 +613,11 @@ pybind11_abi: - 4 python: # part of a zip_keys: python, python_impl, numpy - - 3.7.* *_cpython # [not (osx and arm64)] - 3.8.* *_cpython - 3.9.* *_cpython - 3.10.* *_cpython python_impl: # part of a zip_keys: python, python_impl, numpy - - cpython # [not (osx and arm64)] - cpython - cpython - cpython From 173cceb10c8d0ee9ae906e081ac02dc6056b4e07 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Tue, 25 Oct 2022 02:31:56 -0700 Subject: [PATCH 3/3] Bump to NumPy 1.23 Co-authored-by: Uwe L. Korn --- recipe/migrations/python311.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/migrations/python311.yaml b/recipe/migrations/python311.yaml index 1bd9c491b1..65f5b394e0 100644 --- a/recipe/migrations/python311.yaml +++ b/recipe/migrations/python311.yaml @@ -28,6 +28,6 @@ python: - 3.11.* *_cpython # additional entries to add for zip_keys numpy: - - 1.21 + - 1.23 python_impl: - cpython