diff --git a/.github/workflows/tests_conda.yml b/.github/workflows/tests_conda.yml index dde06237..7e7ccb20 100644 --- a/.github/workflows/tests_conda.yml +++ b/.github/workflows/tests_conda.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.7", "3.8", "3.9", "3.10" , "3.11" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] os: [windows-latest, ubuntu-latest, macos-latest] platform: [x64, x32] exclude: diff --git a/setup.py b/setup.py index 2cdd588c..941a32d8 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,3 @@ -from __future__ import print_function - import os import sys import numpy @@ -125,7 +123,7 @@ def description(): install_requires=load('requirements.txt'), tests_require=load('requirements-dev.txt'), license='License :: OSI Approved :: MIT License', - python_requires=">=3.7", + python_requires=">=3.8", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Operating System :: MacOS :: MacOS X', @@ -133,10 +131,11 @@ def description(): 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - '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', 'Topic :: Scientific/Engineering', 'License :: OSI Approved :: MIT License'], )