commit: 4f4006871258edd5d658bebf0a3ecaca9e7365f0
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 5 19:23:22 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 5 19:23:38 2022 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=4f400687
drop py3.8 and make py3.11 official
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
.github/workflows/test.yml | 10 +++++-----
setup.py | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 4a01cf127..c928b30f2 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
- python-version: ['3.8', '3.9', '3.10']
+ python-version: ['3.9', '3.10', '3.11']
deps: [newest-deps]
experimental: [false]
include:
@@ -21,10 +21,10 @@ jobs:
python-version: '3.10'
deps: minimal-deps
experimental: false
- - os: ubuntu-latest
- python-version: '3.11.0-beta - 3.11'
- deps: newest-deps
- experimental: true
+ # - os: ubuntu-latest
+ # python-version: '3.11.0-beta - 3.11'
+ # deps: newest-deps
+ # experimental: true
- os: macos-latest
python-version: '3.10'
deps: newest-deps
diff --git a/setup.py b/setup.py
index 58d65dbe1..739160992 100755
--- a/setup.py
+++ b/setup.py
@@ -246,8 +246,8 @@ setup(**dict(
),
classifiers=[
'License :: OSI Approved :: BSD License',
- 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
+ 'Programming Language :: Python :: 3.11',
],
))