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
1 change: 0 additions & 1 deletion .github/workflows/docker/shared.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
PYTHON_VERSIONS=(
cp39-cp39
cp310-cp310
cp311-cp311
cp312-cp312
Expand Down
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.13 ]
python: [ "3.10", 3.13 ]
os: [ macos-latest, ubuntu-24.04, windows-latest ]
defaults:
run:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [macos-13, macos-14, macos-15]
python: [3.9, "3.10", 3.11, 3.12, 3.13]
python: ["3.10", 3.11, 3.12, 3.13]
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12, 3.13]
python: ["3.10", 3.11, 3.12, 3.13]
arch: [x64]
steps:
- name: Checkout
Expand Down Expand Up @@ -123,10 +123,10 @@ jobs:
uses: actions/checkout@v4.2.2
with:
submodules: true
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v5.4.0
with:
python-version: 3.9
python-version: "3.10"
- name: Build sdist
shell: bash
run: |
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
strategy:
matrix:
os: [macos-13, macos-14, macos-15]
python: [3.9, "3.10", 3.11, 3.12, 3.13]
python: ["3.10", 3.11, 3.12, 3.13]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.2.0
Expand All @@ -181,7 +181,7 @@ jobs:
needs: ['manylinux']
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12, 3.13]
python: ["3.10", 3.11, 3.12, 3.13]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.2.0
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
needs: ['Windows']
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12, 3.13]
python: ["3.10", 3.11, 3.12, 3.13]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.2.0
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

- Add support and wheels for Python3.13

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

- Add wheels on Windows ({pr}`2414`, {issue}`2200`,{user}`benjeffery`)

**Breaking changes**:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ authors = [
]
description = "Simulate genealogical trees and genomic sequence data using population genetic models"
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",
Expand Down
Loading