From d8e785f12b40e6eef5f09dc519c9a6c255970083 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Tue, 21 May 2024 18:24:07 +0300 Subject: [PATCH] update python versions test matrix --- .github/workflows/ci.yml | 4 ++-- requirements.txt | 6 +++--- setup.py | 4 +++- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6eb9edc..de507e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8] + python-version: [3.8, 3.9, 3.10, 3.11] include: - - python-version: '3.9' + - python-version: '3.12' coverage: 1 steps: - uses: actions/checkout@v2 diff --git a/requirements.txt b/requirements.txt index d77bb8a..e576ad4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ multidimensional-urlencode==0.0.4 nose==1.3.7 -requests==2.32.0 +requests==2.32.1 coverage==4.5.4 -pook==1.0.1 -setuptools==65.5.1 +pook==1.3.3 +setuptools==70.0.0 diff --git a/setup.py b/setup.py index 578d0aa..ccaf379 100644 --- a/setup.py +++ b/setup.py @@ -34,9 +34,11 @@ setup( 'Operating System :: OS Independent', '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', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Software Development :: Libraries :: Python Modules', ]