Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoolkit:master commit in: /, .github/workflows/
Date: Thu, 19 May 2022 04:30:41
Message-Id: 1652934623.ba0b0de18b7404bdde1d1a0982250ccddb25bee7.sam@gentoo
1 commit: ba0b0de18b7404bdde1d1a0982250ccddb25bee7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 19 04:30:23 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu May 19 04:30:23 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=ba0b0de1
7
8 tox.ini, github: add Python 3.10 final, add Python 3.11
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 .github/workflows/ci.yml | 7 +++++--
13 tox.ini | 2 +-
14 2 files changed, 6 insertions(+), 3 deletions(-)
15
16 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
17 index 60b8205..83e6ef3 100644
18 --- a/.github/workflows/ci.yml
19 +++ b/.github/workflows/ci.yml
20 @@ -12,11 +12,14 @@ jobs:
21 - '3.7'
22 - '3.8'
23 - '3.9'
24 - - '3.10.0-alpha - 3.10.0'
25 + - '3.10'
26 + - '3.11.0-alpha - 3.11.0'
27 - 'pypy-3.7'
28 + - 'pypy-3.8'
29 + - 'pypy-3.9'
30
31 env:
32 - PORTAGE_VERSION: "3.0.20"
33 + PORTAGE_VERSION: "3.0.30"
34
35 steps:
36 - uses: actions/checkout@v2
37
38 diff --git a/tox.ini b/tox.ini
39 index 2a5f581..56b255a 100644
40 --- a/tox.ini
41 +++ b/tox.ini
42 @@ -1,5 +1,5 @@
43 [tox]
44 -envlist = py37,py38,py39,pypy3,flake8
45 +envlist = py37,py38,py39,py310,py311,pypy3,flake8
46 skip_missing_interpreters = True
47
48 [testenv]