-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add python 3.13 #593
Add python 3.13 #593
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,8 @@ jobs: | |
shell: bash -l {0} | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | ||
fail-fast: false | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
|
@@ -57,7 +58,7 @@ jobs: | |
channels: conda-forge | ||
channel-priority: strict | ||
auto-update-conda: true | ||
python-version: ${{ matrix.python-version }} | ||
python-version: 3.12 | ||
Comment on lines
-60
to
+61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Apparently |
||
|
||
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }} | ||
name: Finalize Build Environment | ||
|
@@ -68,8 +69,8 @@ jobs: | |
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }} | ||
name: Install mpas_tools | ||
run: | | ||
conda create -y -n mpas_tools_dev --use-local mpas_tools \ | ||
python=${{ matrix.python-version }} \ | ||
conda create -y -n mpas_tools_dev -c ${CONDA_PREFIX}/conda-bld/ \ | ||
-c conda-forge mpas_tools python=${{ matrix.python-version }} \ | ||
Comment on lines
-71
to
+73
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure why python 3.13 likes this better but I'll take it... |
||
sphinx sphinx-multiversion mock sphinx_rtd_theme | ||
|
||
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
c_stdlib: | ||
- sysroot | ||
c_stdlib_version: | ||
- '2.17' | ||
cdt_name: | ||
- conda | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cxx_compiler: | ||
- gxx | ||
cxx_compiler_version: | ||
- '13' | ||
docker_image: | ||
- quay.io/condaforge/linux-anvil-cos7-x86_64 | ||
fortran_compiler: | ||
- gfortran | ||
fortran_compiler_version: | ||
- '13' | ||
hdf5: | ||
- 1.14.4 | ||
libnetcdf: | ||
- 4.9.2 | ||
netcdf_fortran: | ||
- '4.6' | ||
pin_run_as_build: | ||
python: | ||
min_pin: x.x | ||
max_pin: x.x | ||
python: | ||
- 3.13.* *_cp313 | ||
target_platform: | ||
- linux-64 | ||
zip_keys: | ||
- - cxx_compiler_version | ||
- fortran_compiler_version |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
MACOSX_DEPLOYMENT_TARGET: | ||
- '10.13' | ||
MACOSX_SDK_VERSION: | ||
- '10.13' | ||
c_stdlib: | ||
- macosx_deployment_target | ||
c_stdlib_version: | ||
- '10.13' | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cxx_compiler: | ||
- clangxx | ||
cxx_compiler_version: | ||
- '18' | ||
fortran_compiler: | ||
- gfortran | ||
fortran_compiler_version: | ||
- '13' | ||
hdf5: | ||
- 1.14.4 | ||
libnetcdf: | ||
- 4.9.2 | ||
llvm_openmp: | ||
- '18' | ||
macos_machine: | ||
- x86_64-apple-darwin13.4.0 | ||
netcdf_fortran: | ||
- '4.6' | ||
pin_run_as_build: | ||
python: | ||
min_pin: x.x | ||
max_pin: x.x | ||
python: | ||
- 3.13.* *_cp313 | ||
target_platform: | ||
- osx-64 | ||
zip_keys: | ||
- - cxx_compiler_version | ||
- fortran_compiler_version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@altheaden, I've been seeing CI get cancelled when one job in the matrix fails. I think this (rather than
cancel_others: false
below) might be the fix.Could you add this on other repos when you do other updates?