Skip to content

Commit

Permalink
Python 3.13 support and testing (#688)
Browse files Browse the repository at this point in the history
* Python 3.13

* update release notes
  • Loading branch information
kafitzgerald authored Feb 11, 2025
1 parent 3af5c46 commit 791fd0b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion build_envs/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: gc-docs
channels:
- conda-forge
dependencies:
- python>=3.10,<3.13
- python>=3.10,<3.14
- pre_commit
- geocat-datafiles
- geocat-viz
Expand Down
2 changes: 1 addition & 1 deletion build_envs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: geocat_comp_build
channels:
- conda-forge
dependencies:
- python>=3.10,<3.13 # minimum support 3.10
- python>=3.10,<3.14 # minimum support 3.10
- cf_xarray>=0.3.1 # min version 0.3.1 for dependencies
- cftime
- dask
Expand Down
1 change: 1 addition & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ vYYYY.MM.## (unreleased)

Maintenance
^^^^^^^^^^^
* Add support and testing for Python 3.13 by`Katelyn FitzGerald`_ in (:pr:`687`)
* Remove NumPy version pin by `Katelyn FitzGerald`_ in (:pr:`686`)

v2025.01.0 (January 28, 2025)
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering

[options]
zip_safe = False
include_package_data = True
python_requires = >=3.10, <3.13
python_requires = >=3.10, <3.14
packages = find_namespace:
setup_requires =
setuptools_scm
Expand Down

0 comments on commit 791fd0b

Please sign in to comment.