Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/docker/shared.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PYTHON_VERSIONS=(
cp313-cp313
cp312-cp312
cp311-cp311
cp310-cp310
cp39-cp39
)
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: [ 3.9, 3.12 ]
python: [ "3.10", 3.13 ]
os: [ macos-latest, ubuntu-24.04, windows-latest ]
defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12]
python: ["3.10", 3.11, 3.12, 3.13]
steps:
- name: Download wheels
uses: actions/[email protected]
Expand All @@ -75,7 +75,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12]
python: ["3.10", 3.11, 3.12, 3.13]
wordsize: [64]
steps:
- name: Download wheels
Expand All @@ -99,7 +99,7 @@ jobs:
needs: ['manylinux']
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12]
python: ["3.10", 3.11, 3.12, 3.13]
steps:
- name: Download wheels
uses: actions/[email protected]
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
--------------------
[0.2.5] - 2025-XX-XX
--------------------

- Drop Python 3.9 support, require Python >= 3.10 (#112, benjeffery)

--------------------
[0.2.4] - 2024-07-10
--------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ authors = [
]
description = "Compression utilities for tree sequences"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Only",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
Expand Down
Loading