From eebce918d07b3f850d29545d5cd5d56c9ca1889f Mon Sep 17 00:00:00 2001 From: vincenzoarcidiacono Date: Thu, 16 Jan 2025 10:55:50 +0100 Subject: [PATCH] test(core): Add python 3.12 version test. --- .github/workflows/core-tests.yml | 2 +- .github/workflows/tests.yml | 4 ++-- requirements/test.pip | 3 ++- setup.py | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/core-tests.yml b/.github/workflows/core-tests.yml index 6ffe333fc..b2eb391af 100644 --- a/.github/workflows/core-tests.yml +++ b/.github/workflows/core-tests.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [ ubuntu-latest ] extra: [ base ] - python-version: [ '3.8', '3.9', '3.10' ] + python-version: [ '3.10', '3.11', '3.12' ] env: EXTRAS: ${{ matrix.extra }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 566939e6c..13a23ded8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,11 +14,11 @@ jobs: matrix: os: [ ubuntu-latest ] extra: [ base, io, web, form, plot, sphinx, parallel, all, dev ] - python-version: [ '3.9', '3.10', '3.11' ] + python-version: [ '3.10', '3.11', '3.12' ] include: - os: windows-latest extra: all - python-version: '3.10' + python-version: '3.11' env: ACTION: "true" EXTRAS: ${{ matrix.extra }} diff --git a/requirements/test.pip b/requirements/test.pip index ee7920926..8cb4a7429 100644 --- a/requirements/test.pip +++ b/requirements/test.pip @@ -3,4 +3,5 @@ ddt coveralls cryptography -python-dateutil \ No newline at end of file +python-dateutil +setuptools \ No newline at end of file diff --git a/setup.py b/setup.py index 5c51ea37e..22c1e14c6 100755 --- a/setup.py +++ b/setup.py @@ -163,6 +163,7 @@ def get_long_description(cleanup=True, core=False): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Development Status :: 5 - Production/Stable", 'Natural Language :: English',