From 0b429eaeab4f42a2d8c57ba1290559075f658856 Mon Sep 17 00:00:00 2001 From: John Blischak Date: Wed, 4 Dec 2024 11:48:32 -0500 Subject: [PATCH 1/2] Revert "Fix name of conda-forge py313 (#155)" This reverts commit 10794ea2e098f55c65d16881846b8765caa0a729. --- scripts/tiledb-py/update-recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tiledb-py/update-recipe.py b/scripts/tiledb-py/update-recipe.py index 0c40b93..99d1f44 100644 --- a/scripts/tiledb-py/update-recipe.py +++ b/scripts/tiledb-py/update-recipe.py @@ -95,7 +95,7 @@ # # https://github.com/conda-forge/conda-forge-pinning-feedstock/blob/main/recipe/conda_build_config.yaml -config["python"] = ["3.9.* *_cpython", "3.13.* *_cp313"] +config["python"] = ["3.9.* *_cpython", "3.13.* *_cpython"] config["python_impl"] = ["cpython", "cpython"] config["numpy"] = ["2.0", "2.0"] From 7a2259a2970bdd6c385db223295958a288d88dbb Mon Sep 17 00:00:00 2001 From: John Blischak Date: Wed, 4 Dec 2024 11:48:41 -0500 Subject: [PATCH 2/2] Revert "Replace py312 with py313 for build with latest Python variant (#154)" This reverts commit 8894bd4d7468b1f74d31bd03948fe08cbbb7a0b3. --- scripts/tiledb-py/update-recipe.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/scripts/tiledb-py/update-recipe.py b/scripts/tiledb-py/update-recipe.py index 99d1f44..fa9c5a3 100644 --- a/scripts/tiledb-py/update-recipe.py +++ b/scripts/tiledb-py/update-recipe.py @@ -95,18 +95,15 @@ # # https://github.com/conda-forge/conda-forge-pinning-feedstock/blob/main/recipe/conda_build_config.yaml -config["python"] = ["3.9.* *_cpython", "3.13.* *_cpython"] +config["python"] = ["3.9.* *_cpython", "3.12.* *_cpython"] config["python_impl"] = ["cpython", "cpython"] config["numpy"] = ["2.0", "2.0"] with open(conda_build_config, "w") as f: yaml.dump(config, f) -# Have to remove python313/numpy2 migration files to rerender with subset of -# Python variants -python313_migration = "tiledb-py-feedstock/.ci_support/migrations/python313.yaml" -if os.path.isfile(python313_migration): - os.remove(python313_migration) +# Have to remove numpy2 migration file to rerender with subset of Python +# variants numpy2_migration = "tiledb-py-feedstock/.ci_support/migrations/numpy2.yaml" if os.path.isfile(numpy2_migration): os.remove(numpy2_migration)