@@ -16,10 +16,10 @@ jobs:
1616 strategy :
1717 fail-fast : false
1818 matrix :
19- python-version : ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+ python-version : ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev" ]
2020 steps :
2121 - uses : " actions/checkout@v4"
22- - uses : " actions/setup-python@v4 "
22+ - uses : " actions/setup-python@v5 "
2323 with :
2424 python-version : " ${{ matrix.python-version }}"
2525 - name : " Update package details"
2929 - name : " Build mod_wsgi packages"
3030 run : ./package.sh && ls -las dist
3131 - name : " Store built packages"
32- uses : actions/upload-artifact@v3
32+ uses : " actions/upload-artifact@v4 "
3333 with :
3434 name : dist ${{ matrix.python-version }}
3535 path : dist/*
@@ -42,14 +42,14 @@ jobs:
4242 strategy :
4343 fail-fast : false
4444 matrix :
45- python-version : ["3.8", "3.9", "3.10", "3.11", "3.12"]
45+ python-version : ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev" ]
4646 steps :
4747 - uses : " actions/checkout@v4"
48- - uses : " actions/setup-python@v4 "
48+ - uses : " actions/setup-python@v5 "
4949 with :
5050 python-version : " ${{ matrix.python-version }}"
5151 - name : " Download built packages"
52- uses : actions/download-artifact@v3
52+ uses : " actions/download-artifact@v4 "
5353 with :
5454 name : dist ${{ matrix.python-version }}
5555 path : dist
6666 - name : " Uninstall mod_wsgi"
6767 run : pip uninstall --yes mod_wsgi
6868 - name : " Install mod_wsgi-standalone"
69- run : python -m pip install --verbose dist/mod_wsgi- standalone-[0-9].*.tar.gz
69+ run : python -m pip install --verbose dist/mod_wsgi[-_] standalone-[0-9].*.tar.gz
7070 - name : " Run mod_wsgi-express test #2"
7171 run : scripts/run-single-test.sh
7272 - name : " Uninstall mod_wsgi-standalone"
0 commit comments