-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
automerged PR by conda-forge/automerge-action
- Loading branch information
Showing
8 changed files
with
160 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '12' | ||
cdt_name: | ||
- cos6 | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cxx_compiler: | ||
- gxx | ||
cxx_compiler_version: | ||
- '12' | ||
docker_image: | ||
- quay.io/condaforge/linux-anvil-cos7-x86_64 | ||
numpy: | ||
- '1.26' | ||
openmpi: | ||
- '4' | ||
pin_run_as_build: | ||
python: | ||
min_pin: x.x | ||
max_pin: x.x | ||
pybind11_abi: | ||
- '4' | ||
python: | ||
- 3.12.* *_cpython | ||
target_platform: | ||
- linux-64 | ||
zip_keys: | ||
- - c_compiler_version | ||
- cxx_compiler_version | ||
- - python | ||
- numpy |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
migrator_ts: 1695046563 | ||
__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 | ||
- 3.12.* *_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: 30 | ||
max_solver_attempts: 6 # this will make the bot retry "not solvable" stuff 6 times | ||
exclude: | ||
# this shouldn't attempt to modify the python feedstocks | ||
- python | ||
- pypy3.6 | ||
- pypy-meta | ||
- cross-python | ||
- python_abi | ||
exclude_pinned_pkgs: false | ||
|
||
python: | ||
- 3.12.* *_cpython | ||
# additional entries to add for zip_keys | ||
numpy: | ||
- 1.26 | ||
python_impl: | ||
- cpython |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
MACOSX_DEPLOYMENT_TARGET: | ||
- '10.9' | ||
c_compiler: | ||
- clang | ||
c_compiler_version: | ||
- '16' | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cxx_compiler: | ||
- clangxx | ||
cxx_compiler_version: | ||
- '16' | ||
llvm_openmp: | ||
- '16' | ||
macos_machine: | ||
- x86_64-apple-darwin13.4.0 | ||
numpy: | ||
- '1.26' | ||
openmpi: | ||
- '4' | ||
pin_run_as_build: | ||
python: | ||
min_pin: x.x | ||
max_pin: x.x | ||
pybind11_abi: | ||
- '4' | ||
python: | ||
- 3.12.* *_cpython | ||
target_platform: | ||
- osx-64 | ||
zip_keys: | ||
- - c_compiler_version | ||
- cxx_compiler_version | ||
- - python | ||
- numpy |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
26 changes: 26 additions & 0 deletions
26
recipe/patches/0005-Allow-installing-for-Python-3.12.patch
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From dd26233a6b5cdfe36d855c7127cfad9bcdfc9e68 Mon Sep 17 00:00:00 2001 | ||
From: Bas Nijholt <[email protected]> | ||
Date: Thu, 7 Dec 2023 08:54:39 -0800 | ||
Subject: [PATCH] Allow installing for Python 3.12 | ||
|
||
I have tested qsim on Python 3.12 and everything works just fine. | ||
--- | ||
setup.py | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/setup.py b/setup.py | ||
index ed4720c..70ebca4 100644 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -114,7 +114,7 @@ setup( | ||
url="https://github.com/quantumlib/qsim", | ||
author="Vamsi Krishna Devabathini", | ||
author_email="[email protected]", | ||
- python_requires=">=3.7.0,<3.12.0", | ||
+ python_requires=">=3.7.0", | ||
install_requires=requirements, | ||
extras_require={ | ||
"dev": dev_requirements, | ||
-- | ||
2.43.0 | ||
|