|
24 | 24 | # Docker image version, see https://hub.docker.com/r/burnysc2/python-sc2-docker/tags |
25 | 25 | # This version should always lack behind one version behind the docker-ci.yml because it is possible that it doesn't exist |
26 | 26 | VERSION_NUMBER: '1.0.2' |
| 27 | + # TODO Change to '3.13' when a new image has been pushed |
27 | 28 | LATEST_PYTHON_VERSION: '3.11' |
28 | 29 | LATEST_SC2_VERSION: '4.10' |
29 | 30 |
|
@@ -136,8 +137,9 @@ jobs: |
136 | 137 | # If all type annotations were removed, this library should run in py3.6 and perhaps even 3.5 |
137 | 138 | # Python 3.7 support has been dropped due to missing cached_property (new since Python 3.8) https://docs.python.org/3/library/functools.html#functools.cached_property |
138 | 139 | # Python 3.8 support has been dropped because numpy >=1.26.0 requires Python >=3.9 (this numpy version is required to run python 3.12) |
| 140 | + # Python 3.9 support has been dropped since numpy >=2.1.0 (this numpy version is required to run python 3.13) |
139 | 141 | os: [macos-latest, windows-latest, ubuntu-latest] |
140 | | - python-version: ['3.9', '3.10', '3.11', '3.12'] |
| 142 | + python-version: ['3.10', '3.11', '3.12', '3.13'] |
141 | 143 |
|
142 | 144 | steps: |
143 | 145 | - uses: actions/checkout@v3 |
@@ -200,7 +202,8 @@ jobs: |
200 | 202 | fail-fast: false |
201 | 203 | matrix: |
202 | 204 | os: [ubuntu-latest] |
203 | | - python-version: ['3.9', '3.10', '3.11'] |
| 205 | + # TODO Add '3.12' and '3.13' when a new image has been pushed |
| 206 | + python-version: ['3.10', '3.11'] |
204 | 207 | sc2-version: ['4.10'] |
205 | 208 | env: |
206 | 209 | IMAGE_NAME: burnysc2/python-sc2:local |
@@ -309,7 +312,7 @@ jobs: |
309 | 312 | # docker rm -f my_container |
310 | 313 |
|
311 | 314 | run_coverage: |
312 | | - # Run and upload coverage report using python 3.9 |
| 315 | + # Run and upload coverage report |
313 | 316 | # This coverage test does not cover the whole testing range, check /bat_files/rune_code_coverage.bat |
314 | 317 | name: Run coverage |
315 | 318 | needs: [run_test_bots, run_example_bots] |
|
0 commit comments