Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions .ci_support/linux_64_python3.14.____cp314t.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
c_compiler:
- gcc
c_compiler_version:
- '14'
c_stdlib:
- sysroot
c_stdlib_version:
- '2.17'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-x86_64:alma9
fortran_compiler:
- gfortran
fortran_compiler_version:
- '14'
numpy:
- '2'
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.14.* *_cp314t
python_impl:
- cpython
target_platform:
- linux-64
zip_keys:
- - c_compiler_version
- fortran_compiler_version
47 changes: 47 additions & 0 deletions .ci_support/migrations/python314t.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
migrator_ts: 1755739493
__migrator:
commit_message: Rebuild for python 3.14 freethreading
migration_number: 1
operation: key_add
primary_key: python
ordering:
python:
- 3.9.* *_cpython
- 3.10.* *_cpython
- 3.11.* *_cpython
- 3.12.* *_cpython
- 3.13.* *_cp313
- 3.13.* *_cp313t
- 3.14.* *_cp314 # new entry
- 3.14.* *_cp314t # new entry
longterm: true
pr_limit: 20
max_solver_attempts: 3 # this will make the bot retry "not solvable" stuff 12 times
exclude:
# this shouldn't attempt to modify the python feedstocks
- python
- pypy3.6
- pypy-meta
- cross-python
- python_abi
exclude_pinned_pkgs: false
# if feedstock already has 3.13t migrator this is redundant, but harmless
additional_zip_keys:
- is_freethreading
- is_abi3
wait_for_migrators:
- python314
ignored_deps_per_node:
matplotlib:
- pyqt
allowlist_file: free-threaded-314.txt

python:
- 3.14.* *_cp314t
# additional entries to add for zip_keys
is_freethreading:
- true
is_python_min:
- false
is_abi3:
- false
39 changes: 39 additions & 0 deletions .ci_support/osx_64_python3.14.____cp314t.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.13'
MACOSX_SDK_VERSION:
- '10.13'
c_compiler:
- clang
c_compiler_version:
- '19'
c_stdlib:
- macosx_deployment_target
c_stdlib_version:
- '10.13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
fortran_compiler:
- gfortran
fortran_compiler_version:
- '14'
llvm_openmp:
- '19'
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
- '2'
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.14.* *_cp314t
python_impl:
- cpython
target_platform:
- osx-64
zip_keys:
- - c_compiler_version
- fortran_compiler_version
28 changes: 28 additions & 0 deletions .ci_support/win_64_python3.14.____cp314t.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
m2w64_c_compiler:
- gcc
m2w64_c_compiler_version:
- '14'
m2w64_c_stdlib:
- m2w64-sysroot
m2w64_c_stdlib_version:
- '12'
m2w64_fortran_compiler:
- gfortran
m2w64_fortran_compiler_version:
- '14'
numpy:
- '2'
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.14.* *_cp314t
python_impl:
- cpython
target_platform:
- win-64
21 changes: 21 additions & 0 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ source:
build:
skip: True # [py<38]
skip: True # [python_impl == 'pypy']
number: 0
number: 1
script: {{ PYTHON }} -m pip install . --no-deps -vv
entry_points:
- capytaine = capytaine.ui.cli:main
Expand Down
Loading