Skip to content

Commit 5ca19db

Browse files
committed
Update Python versions in GitHub actions
Drop Python 2.7, as it is no longer available: Warning: The support for python 2.7 will be removed on June 19. Related issue: actions/setup-python#672 Version 2.7 was not found in the local cache Error: The version '2.7' with architecture 'x64' was not found for Ubuntu 22.04. The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json Add Python 3.12 as its support was just added.
1 parent 4fe0dc7 commit 5ca19db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ ubuntu-latest, macos-latest ]
16-
py: [ "2.7", "3.7", "3.8", "3.9", "3.10", "3.11" ]
16+
py: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
1717
rust: [ "1.41.1", "stable", "nightly" ]
1818

1919
steps:
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
os: [ windows-latest ]
53-
py: [ "2.7", "3.7", "3.8", "3.9", "3.10", "3.11"]
53+
py: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
5454
rust: [ "1.41.1", "stable" ]
5555

5656
steps:

0 commit comments

Comments
 (0)