Skip to content

Commit 5266d6d

Browse files
authored
Update maint for Python 3.11 (#1381)
* Update for Python 3.11
1 parent 4aec099 commit 5266d6d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
python-version: ['3.7', '3.8', '3.9', '3.10']
19+
python-version: ['3.8', '3.9', '3.10', '3.11']
2020
architecture: ['x64']
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v2
2424
- name: setup
2525
uses: actions/setup-python@v2
2626
with:

arcade/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env python
22

3-
VERSION = "2.6.16"
3+
VERSION = "2.6.17"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_long_description() -> str:
5454
download_url="https://api.arcade.academy",
5555
install_requires=[
5656
"pyglet==2.0.dev23",
57-
"pillow~=9.1.1",
57+
"pillow~=9.3.0",
5858
"pymunk~=6.2.1",
5959
"pytiled-parser==2.2.0",
6060
],
@@ -77,6 +77,7 @@ def get_long_description() -> str:
7777
"Programming Language :: Python :: 3.8",
7878
"Programming Language :: Python :: 3.9",
7979
"Programming Language :: Python :: 3.10",
80+
"Programming Language :: Python :: 3.11",
8081
"Programming Language :: Python :: Implementation :: CPython",
8182
"Topic :: Software Development :: Libraries :: Python Modules",
8283
],

0 commit comments

Comments
 (0)