Skip to content

Commit 976096e

Browse files
Merge pull request #12 from kishaningithub/upgrade-python-versions
Upgrade python versions
2 parents 8f03edb + 2778b5f commit 976096e

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

.github/workflows/test.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,17 @@ jobs:
5858
matrix:
5959
include:
6060
- python-version: "3"
61-
installed-python-version: "3.12.2"
61+
installed-python-version: "3.12.4"
62+
- python-version: "3.12"
63+
installed-python-version: "3.12.4"
64+
- python-version: "3.11"
65+
installed-python-version: "3.11.9"
66+
- python-version: "3.10"
67+
installed-python-version: "3.10.14"
6268
- python-version: "3.9"
63-
installed-python-version: "3.9.18"
69+
installed-python-version: "3.9.19"
70+
- python-version: "3.8"
71+
installed-python-version: "3.8.19"
6472
runs-on: ubuntu-latest
6573
container: amazonlinux:2023
6674
steps:

find-exact-python-version.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ fi
1515
# - https://devguide.python.org/versions/
1616
case "${desired_python_version}" in
1717
"3")
18-
echo "3.12.2"
18+
echo "3.12.4"
1919
;;
2020
"3.12")
21-
echo "3.12.2"
21+
echo "3.12.4"
2222
;;
2323
"3.11")
24-
echo "3.11.8"
24+
echo "3.11.9"
2525
;;
2626
"3.10")
27-
echo "3.10.13"
27+
echo "3.10.14"
2828
;;
2929
"3.9")
30-
echo "3.9.18"
30+
echo "3.9.19"
3131
;;
3232
"3.8")
33-
echo "3.8.18"
33+
echo "3.8.19"
3434
;;
3535
*)
3636
echo "${desired_python_version}"

0 commit comments

Comments
 (0)