From 15096aa2535afe9579bd2d04265ef845b5e9641a Mon Sep 17 00:00:00 2001 From: Eleftherios Zisis Date: Wed, 9 Oct 2024 13:00:03 +0200 Subject: [PATCH] Add python3.13 --- .github/workflows/tox.yml | 4 ++-- pyproject.toml | 1 + tox.ini | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 4caae52..c936ac2 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: @@ -26,7 +26,7 @@ jobs: run: sudo apt-get update && sudo apt-get install -y graphviz - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index d86c941..96b4e62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,6 +38,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: Bio-Informatics", ] dynamic = ["version"] diff --git a/tox.ini b/tox.ini index c5d64d6..effdffb 100644 --- a/tox.ini +++ b/tox.ini @@ -16,7 +16,7 @@ envlist = docs coverage check-packaging - py{310,311,312} + py{310,311,312,313} [testenv] deps = {[base]testdeps} @@ -158,3 +158,4 @@ python = 3.10: py310, lint 3.11: py311, docs 3.12: py312, check-packaging + 3.13: py313