Skip to content
Closed
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: 1 addition & 0 deletions .github/workflows/docker/shared.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ PYTHON_VERSIONS=(
cp310-cp310
cp311-cp311
cp312-cp312
cp313-cp313
)
GSL_VERSION=2.6
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- uses: actions/setup-python@v5.4.0
with:
python-version: "3.11"
python-version: "3.12"
cache: "pip"

- name: Create venv and install deps (one by one to avoid conflict errors)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: [ 3.9, 3.12 ]
python: [ 3.9, 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 @@ -15,7 +15,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12]
python: [3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12]
python: [3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.2.0
Expand All @@ -119,7 +119,7 @@ jobs:
needs: ['manylinux']
strategy:
matrix:
python: [3.9, "3.10", 3.11, 3.12]
python: [3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.2.0
Expand Down
12 changes: 6 additions & 6 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ queue_rules:
- status-success=Docs
- status-success=Lint
- status-success=Python (3.9, macos-latest)
- status-success=Python (3.12, macos-latest)
- status-success=Python (3.13, macos-latest)
- status-success=Python (3.9, ubuntu-24.04)
- status-success=Python (3.12, ubuntu-24.04)
- status-success=Python (3.13, ubuntu-24.04)
- status-success=Python (3.9, windows-latest)
- status-success=Python (3.12, windows-latest)
- status-success=Python (3.13, windows-latest)
- "status-success=ci/circleci: build"
merge_conditions:
- "#approved-reviews-by>=1"
- status-success=Docs
- status-success=Lint
- status-success=Python (3.9, macos-latest)
- status-success=Python (3.12, macos-latest)
- status-success=Python (3.13, macos-latest)
- status-success=Python (3.9, ubuntu-24.04)
- status-success=Python (3.12, ubuntu-24.04)
- status-success=Python (3.13, ubuntu-24.04)
- status-success=Python (3.9, windows-latest)
- status-success=Python (3.12, windows-latest)
- status-success=Python (3.13, windows-latest)
- "status-success=ci/circleci: build"
merge_method: rebase
update_method: rebase
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.3.4] - 2024-08-07

- Add support and wheels for Python3.13

## [1.3.3] - 2024-08-07

Bugfix release for issues with Dirac and Beta coalescent models.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"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