commit:     b28c3db8351007929d9bac3ea23c00b205d87ab4
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 17 19:05:44 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 17 19:05:44 2023 +0000
URL:        
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=b28c3db8

drop support for py3.9

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .github/workflows/doc.yml     | 4 ++--
 .github/workflows/release.yml | 4 ++--
 .github/workflows/test.yml    | 4 ++--
 README.rst                    | 2 +-
 pyproject.toml                | 3 +--
 tox.ini                       | 2 +-
 6 files changed, 9 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index b5820146..47708ff4 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -21,10 +21,10 @@ jobs:
     - name: Checkout code
       uses: actions/checkout@v3
 
-    - name: Set up Python 3.10
+    - name: Set up Python 3.11
       uses: actions/setup-python@v4
       with:
-        python-version: '3.10'
+        python-version: '3.11'
         cache: 'pip'
         cache-dependency-path: pyproject.toml
 

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index cf1a719b..00120669 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -12,10 +12,10 @@ jobs:
     - name: Checkout code
       uses: actions/checkout@v3
 
-    - name: Set up Python 3.10
+    - name: Set up Python 3.11
       uses: actions/setup-python@v4
       with:
-        python-version: "3.10"
+        python-version: "3.11"
         cache: 'pip'
         cache-dependency-path: pyproject.toml
 

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 31760dcb..019a76c5 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -13,14 +13,14 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest]
-        python-version: ['3.9', '3.10', '3.11', 'pypy-3.9']
+        python-version: ['3.10', '3.11', 'pypy-3.9']
         experimental: [false]
         include:
           - os: ubuntu-latest
             python-version: '3.12-dev'
             experimental: true
           - os: macos-latest
-            python-version: '3.10'
+            python-version: '3.11'
             experimental: false
       fail-fast: false
 

diff --git a/README.rst b/README.rst
index ab8aff80..570db727 100644
--- a/README.rst
+++ b/README.rst
@@ -36,7 +36,7 @@ Using tox for all supported python versions::
 
 Using tox for a specific python version::
 
-    tox -e py39
+    tox -e py310
 
 Contact
 =======

diff --git a/pyproject.toml b/pyproject.toml
index e86ec920..b9253042 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
 name = "snakeoil"
 description = "misc common functionality and useful optimizations"
 readme = "README.rst"
-requires-python = "~=3.9"
+requires-python = "~=3.10"
 authors = [
     {name = "Tim Harder", email = "radher...@gmail.com"},
     {name = "Arthur Zamarin", email = "arthur...@gentoo.org"},
@@ -17,7 +17,6 @@ maintainers = [
 classifiers = [
     "Intended Audience :: Developers",
     "License :: OSI Approved :: BSD License",
-    "Programming Language :: Python :: 3.9",
     "Programming Language :: Python :: 3.10",
     "Programming Language :: Python :: 3.11",
 ]

diff --git a/tox.ini b/tox.ini
index 3d9c197e..00584b5e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py38, py39, py310, pypy3
+envlist = py310, py311, pypy3
 [testenv]
 # force latest virtualenv/pip
 download = true

Reply via email to