diff options
author | Sam James <sam@gentoo.org> | 2024-01-19 04:15:03 +0000 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-01-23 22:50:50 +0200 |
commit | e12cce9b8e8648fbfe2cedd2249243c96637997f (patch) | |
tree | 61c33b651426465f56183d1209d354c780aa46db /.github | |
parent | CI: add Python 3.12 (diff) | |
download | pkgdev-e12cce9b8e8648fbfe2cedd2249243c96637997f.tar.gz pkgdev-e12cce9b8e8648fbfe2cedd2249243c96637997f.tar.bz2 pkgdev-e12cce9b8e8648fbfe2cedd2249243c96637997f.zip |
CI: test Python 3.13, promote Python 3.12 to non-exp
Signed-off-by: Sam James <sam@gentoo.org>
Closes: https://github.com/pkgcore/pkgdev/pull/126
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ea9c03..c9b48a3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,11 +13,11 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ['3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] experimental: [false] include: - os: ubuntu-latest - python-version: '3.12-dev' + python-version: '3.13-dev' experimental: true - os: macos-latest python-version: '3.11' |