diff --git a/.github/workflows/Deployment.yml b/.github/workflows/Deployment.yml index cbb094acd..ea3c1f033 100644 --- a/.github/workflows/Deployment.yml +++ b/.github/workflows/Deployment.yml @@ -33,7 +33,7 @@ jobs: runs-on: windows-2022 strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ] + python-version: [ 3.9, "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: @@ -77,7 +77,7 @@ jobs: runs-on: macos-13 strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ] + python-version: [ 3.9, "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: @@ -118,7 +118,7 @@ jobs: runs-on: macos-latest-xlarge strategy: matrix: - python-version: [ "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: @@ -161,7 +161,7 @@ jobs: CXX: g++-9 strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ] + python-version: [ 3.9, "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: diff --git a/setup.py b/setup.py index c35ef0dc3..a8fb6328a 100644 --- a/setup.py +++ b/setup.py @@ -180,12 +180,12 @@ def setup_package(): 'Operating System :: Microsoft :: Windows :: Windows 10', 'Operating System :: POSIX', 'Operating System :: Unix', - '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', + 'Programming Language :: Python :: 3.14', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Software Development :: User Interfaces',