Skip to content

Commit cc65906

Browse files
author
ponty
committed
support py312
1 parent a3f4303 commit cc65906

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

.github/workflows/main.yml

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- "3.9"
2424
- "3.10"
2525
- "3.11"
26+
- "3.12"
2627
include:
2728
- python-version: "3.6"
2829
os: ubuntu-20.04
@@ -36,6 +37,8 @@ jobs:
3637
os: ubuntu-20.04
3738
- python-version: "3.11"
3839
os: ubuntu-20.04
40+
- python-version: "3.12"
41+
os: ubuntu-20.04
3942
steps:
4043
- uses: actions/checkout@v3
4144
- name: Set up Python ${{ matrix.python-version }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Links:
1111

1212
Features:
1313
- python wrapper
14-
- supported python versions: 3.6, 3.7, 3.8, 3.9, 3.10, 3.11
14+
- supported python versions: 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12
1515
- back-ends: [Xvfb][1], [Xephyr][2] and [Xvnc][3]
1616

1717
Possible applications:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"Programming Language :: Python :: 3.9",
3838
"Programming Language :: Python :: 3.10",
3939
"Programming Language :: Python :: 3.11",
40+
"Programming Language :: Python :: 3.12",
4041
]
4142

4243

tests/vagrant/ubuntu2204.sh

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ sudo apt-get install -y python3.10-distutils
2222
sudo apt-get install -y python3.11-dev
2323
sudo apt-get install -y python3.11-distutils
2424

25+
sudo apt-get install -y python3.12-dev
26+
sudo apt-get install -y python3.12-distutils
27+
2528
# tools
2629
sudo apt-get install -y mc python3-pip xvfb
2730

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
[tox]
33
envlist =
4+
py312
45
py311
56
py310
67
py39

0 commit comments

Comments
 (0)