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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
jobs:
build:
docker:
- image: cimg/python:3.9
- image: cimg/python:3.10
steps:
- checkout

Expand All @@ -25,7 +25,7 @@ jobs:
- run:
name: Install test dependencies
command: |
pyenv global 3.9
pyenv global 3.10
pip install uv
uv pip install --system -r pyproject.toml --extra test
pyenv rehash
Expand Down
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
)
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [ 3.9, "3.12" ]
python: [ "3.10", 3.13 ]
os: [ macos-latest, ubuntu-24.04, windows-latest ]
defaults:
run:
Expand Down Expand Up @@ -46,7 +46,6 @@ jobs:
- name: Install cyvcf2 #Fails if done via conda due to no windows support.
if: matrix.os != 'windows-latest'
run: |
#Install these by pip so we don't pull in cbgen with conda as it isn't available on 3.12
uv pip install sgkit==0.9.0 cyvcf2==0.31.1 yarl==1.9.4 aiohttp==3.9.5 requests==2.32.3

- name: Install sgkit only on windows
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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: Checkout
uses: actions/[email protected]
Expand Down Expand Up @@ -44,7 +44,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: Checkout
Expand Down Expand Up @@ -79,10 +79,10 @@ jobs:
with:
submodules: true

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/[email protected]
with:
python-version: 3.9
python-version: "3.10"

- name: Build sdist
shell: bash
Expand Down Expand Up @@ -112,7 +112,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 @@ -135,7 +135,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 @@ -161,7 +161,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.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.4.2] - 2025-XX-XX

** Changes **

- Drop Python 3.9 support, require Python >= 3.10 ({pr}`1044`, {user}`benjeffery`)

## [0.4.1] - 2024-04-19

** Changes **
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ authors = [
]
description = "Infer tree sequences from genetic variation data."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = {text = "GNU GPLv3+"}
classifiers = [
"Programming Language :: C",
"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",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 3 - Alpha",
Expand Down
Loading