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
3 changes: 2 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
# Testing against all supported versions of CPython.
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Unreleased Changes
* The Natural Capital Project changed its name to the Natural Capital Alliance.
References to the old name have been updated to reflect this change.
(`#113 <https://github.com/natcap/taskgraph/issues/113>`_)
* GitHub Actions-based tests are now running against CPython 3.13 and 3.14, and
no longer running against 3.8 and 3.9. All currently-supported versions of
CPython are in the test matrix.
(`#111 <https://github.com/natcap/taskgraph/issues/111>`_)

0.11.2 (2025-05-21)
-------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ classifiers = [
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: BSD License"
]
# the version is provided dynamically by setuptools_scm
Expand Down
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
[tox]
envlist = {py37,py38,py39,py310,py311}-{base,psutil}
envlist = {y310,py311,py312,py313,py314}-{base,psutil}

[gh-actions]
# Allows us to use tox configuration to manage our tests, but still run on
# github actions in the GHA matrix job matrix with GHA-managed python.
# Requires tox-gh-actions package to run.
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314

[testenv]
commands =
Expand Down
Loading