From d9031b55b758543870b8dc4fa09efe898db93da3 Mon Sep 17 00:00:00 2001 From: Yang Luo Date: Sat, 2 Mar 2024 22:26:40 +0800 Subject: [PATCH] feat: update Python version to 3.9+, update CI Python version --- .github/workflows/build.yml | 2 +- .travis.yml | 16 ---------------- setup.py | 3 +-- 3 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 754405c..eca2111 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] os: [ubuntu-latest, macOS-latest, windows-latest] steps: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 21e5150..0000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -dist: focal -language: python -python: -- '3.6' -- '3.7' -- '3.8' -- '3.9' -- '3.10.1' -install: -- pip install -r requirements.txt -- pip install -r dev_requirements.txt --upgrade -- pip install coveralls -script: -- pytest --cov flask_authz -after_success: -- coveralls diff --git a/setup.py b/setup.py index 7262f1d..3559823 100644 --- a/setup.py +++ b/setup.py @@ -40,11 +40,10 @@ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "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", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ],