Skip to content

Commit a29f649

Browse files
committed
Update to python 3.11
1 parent 063c50c commit a29f649

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/testCode.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: windows-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.8]
15+
python-version: [3.11]
1616
steps:
1717
- name: Checkout code
1818
uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If all is valid, "Congratulations: manifest, metadata and file path are valid" i
2525
## Dependencies ##
2626

2727
* [Python](https://www.python.org/).
28-
- Tested with: 3.8, 32 bit
28+
- Tested with: 3.11, 32 bit
2929

3030
## Local Usage ##
3131
To try validating an addon submission on your own machine.

venvUtils/ensureAndActivate.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# and then activates it.
33
# this script should be used only in the case where many commands will be executed within the environment and the shell will be eventually thrown away.
44
# E.g. an Appveyor build.
5-
py -3.8-32 "$PSScriptRoot\ensureVenv.py"
5+
py -3.11-32 "$PSScriptRoot\ensureVenv.py"
66
if ($LASTEXITCODE -eq 1) {exit 1}
77
. "$PSScriptRoot\..\.venv\scripts\activate.ps1"
88
Set-Variable NVDA_VENV $ENV:VIRTUAL_ENV

0 commit comments

Comments
 (0)