From c6ce92c9b3f92686229adba7118595756aafea27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Thu, 30 May 2024 17:06:47 +0200 Subject: [PATCH] chore: drop py 3.8, add 3.11 and 3.12 --- .github/workflows/check.yml | 2 +- .github/workflows/deploy_pypi.yml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index c5b3735..680dd67 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.9', '3.10', '3.11', '3.12'] os: [macos-latest, ubuntu-latest, windows-latest] steps: diff --git a/.github/workflows/deploy_pypi.yml b/.github/workflows/deploy_pypi.yml index a5a7e21..06bc92a 100644 --- a/.github/workflows/deploy_pypi.yml +++ b/.github/workflows/deploy_pypi.yml @@ -10,7 +10,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index d9e5947..da5db2f 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ "shapely>=1.8.2" ], # not to be confused with definitions in pyproject.toml [build-system] - python_requires=">=3.8", + python_requires=">=3.9", keywords=["Brillouin microscopy"], classifiers=['Operating System :: OS Independent', 'Programming Language :: Python :: 3',