Skip to content

Commit

Permalink
Extend support for Python 3.13 (#451)
Browse files Browse the repository at this point in the history
Run tests on CI using Python 3.13 to ensure Pooch works properly on
latest version of Python.
  • Loading branch information
santisoler authored Dec 19, 2024
1 parent 6edbbec commit 1bc1c51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
- dependencies: oldest
python: "3.9"
- dependencies: latest
python: "3.11"
python: "3.13"
- dependencies: optional
python: "3.11"
python: "3.13"
# test on macos-13 (x86) using oldest dependencies and python 3.7
- os: macos-13
dependencies: oldest
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python==3.11
- python==3.13
- pip
# Run
- requests
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
Expand Down

0 comments on commit 1bc1c51

Please sign in to comment.