From 02f50e1cb5d40fc91ffcdd07fbbde67fd881f7ea Mon Sep 17 00:00:00 2001 From: Eleftherios Zisis Date: Wed, 9 Oct 2024 13:20:07 +0200 Subject: [PATCH] Add python3.13 --- .github/workflows/run-tox.yml | 6 +++--- setup.py | 6 +++--- tox.ini | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run-tox.yml b/.github/workflows/run-tox.yml index 549ac9f..8808459 100644 --- a/.github/workflows/run-tox.yml +++ b/.github/workflows/run-tox.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/setup.py b/setup.py index 6b2caa7..a0025db 100644 --- a/setup.py +++ b/setup.py @@ -21,11 +21,11 @@ setup( classifiers=[ - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "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", ], name="vascpy", description="Vasculature API", @@ -55,5 +55,5 @@ packages=find_packages(), entry_points={"console_scripts": ["vascpy = vascpy.cli:app"]}, include_package_data=True, - python_requires=">=3.7", + python_requires=">=3.9", ) diff --git a/tox.ini b/tox.ini index 6956f0d..a7d515a 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ testdeps = [tox] minversion = 3.1.0 envlist = - py{38,39,310,311,312} + py{39,310,311,312,313} docs lint format @@ -70,8 +70,8 @@ max-line-length = 100 [gh-actions] python = - 3.8 : py38, lint - 3.9 : py39 + 3.9 : py39, lint 3.10: py310 3.11: py311, docs 3.12: py312 + 3.13: py313