Skip to content

Commit 7ab1acb

Browse files
committed
Try Python 3.11
1 parent c6e7e49 commit 7ab1acb

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, windows-latest]
10-
python-version: ["3.7", "3.8", "3.9", "3.10"]
10+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1111
runs-on: ${{ matrix.os }}
1212
steps:
1313
- uses: actions/checkout@v3
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v3
2525
- uses: actions/setup-python@v4
2626
with:
27-
python-version: "3.10"
27+
python-version: "3.11"
2828
- run: pip install -e .
2929
- run: python examples/perft/perft.py -t 1 examples/perft/random.perft --max-nodes 10000
3030
- run: python examples/perft/perft.py -t 1 examples/perft/tricky.perft
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
os: [ubuntu-latest, windows-latest]
41-
python-version: ["3.9", "3.10"]
41+
python-version: ["3.9", "3.11"]
4242
runs-on: ubuntu-latest
4343
steps:
4444
- uses: actions/checkout@v3
@@ -55,7 +55,7 @@ jobs:
5555
- uses: actions/checkout@v3
5656
- uses: actions/setup-python@v4
5757
with:
58-
python-version: "3.10"
58+
python-version: "3.11"
5959
- run: sudo apt-get update && sudo apt-get install -y docutils-common
6060
- run: python setup.py --long-description | rst2html --strict --no-raw > /dev/null
6161
- run: pip install -e .

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ def read_description():
9393
"Programming Language :: Python :: 3.8",
9494
"Programming Language :: Python :: 3.9",
9595
"Programming Language :: Python :: 3.10",
96+
"Programming Language :: Python :: 3.11",
9697
"Topic :: Games/Entertainment :: Board Games",
9798
"Topic :: Games/Entertainment :: Turn Based Strategy",
9899
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)