99
1010 strategy :
1111 matrix :
12- python-version : ["3.12 "]
12+ python-version : ["3.13 "]
1313
1414 steps :
1515 - uses : actions/checkout@v4
1616 - name : Set up Python ${{ matrix.python-version }}
17- uses : actions/setup-python@v5
17+ uses : actions/setup-python@v6
1818 with :
1919 python-version : ${{ matrix.python-version }}
2020 - name : Install dependencies
@@ -39,17 +39,17 @@ jobs:
3939
4040 legacy :
4141 name : " Older Python 3 Releases"
42- runs-on : ubuntu-20 .04
42+ runs-on : ubuntu-24 .04
4343
4444 strategy :
4545 fail-fast : false
4646 matrix :
47- python-version : ["3.6", "3.7", "3. 8", "3.9", "3.10", "3.11", "3.13 "]
47+ python-version : ["3.8", "3.9", "3.10", "3.11", "3.12 "]
4848
4949 steps :
5050 - uses : actions/checkout@v4
5151 - name : Set up Python ${{ matrix.python-version }}
52- uses : actions/setup-python@v5
52+ uses : actions/setup-python@v6
5353 with :
5454 python-version : ${{ matrix.python-version }}
5555 allow-prereleases : true
@@ -71,12 +71,28 @@ jobs:
7171
7272 antiquity :
7373 name : " Python 2.7"
74- runs-on : ubuntu-20.04
75- container :
76- image : python:2.7.18-buster
7774
75+ # runs-on: ubuntu-20.04
76+ # container:
77+ # image: python:2.7.18-buster
78+ #
79+
80+ runs-on : ubuntu-22.04
7881 steps :
7982 - uses : actions/checkout@v4
83+
84+ - name : Install Python 2.7
85+ run : |
86+ sudo apt-get update
87+ sudo apt-get install -y python2
88+ python2 --version
89+
90+ - name : Install pip for Python 2.7
91+ run : |
92+ curl -sS https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
93+ sudo python2 get-pip.py
94+ pip2 --version
95+
8096 - name : Install dependencies
8197 run : |
8298 apt-get update && apt-get install sudo cmake gawk rsync -y
0 commit comments