Skip to content

Commit 845d04e

Browse files
author
ponty
committed
support py312
1 parent 5ef53ff commit 845d04e

File tree

5 files changed

+11
-1
lines changed

5 files changed

+11
-1
lines changed

.github/workflows/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- "3.9"
2727
- "3.10"
2828
- "3.11"
29+
- "3.12"
2930
stdfile:
3031
- "pipe"
3132
- "tempfile"
@@ -48,6 +49,9 @@ jobs:
4849
- python-version: "3.11"
4950
os: ubuntu-20.04
5051
stdfile: "tempfile"
52+
- python-version: "3.12"
53+
os: ubuntu-20.04
54+
stdfile: "tempfile"
5155
steps:
5256
- uses: actions/checkout@v3
5357
- name: Set up Python ${{ matrix.python-version }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Features:
1818
- stdout/stderr is set only after the subprocess has finished
1919
- stop() does not kill whole subprocess tree
2020
- unicode support
21-
- supported python versions: 3.7, 3.8, 3.9, 3.10, 3.11
21+
- supported python versions: 3.7, 3.8, 3.9, 3.10, 3.11, 3.12
2222
- [Method chaining](https://en.wikipedia.org/wiki/Method_chaining)
2323

2424
Installation:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"Programming Language :: Python :: 3.9",
3737
"Programming Language :: Python :: 3.10",
3838
"Programming Language :: Python :: 3.11",
39+
"Programming Language :: Python :: 3.12",
3940
]
4041

4142

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[tox]
22
envlist =
3+
py312
4+
py312-{tempfile,pipe}
35
py311
46
py311-{tempfile,pipe}
57
py310

vagrant.sh

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ sudo apt-get install -y python3.10-distutils
2828
sudo apt-get install -y python3.11-dev
2929
sudo apt-get install -y python3.11-distutils
3030

31+
sudo apt-get install -y python3.12-dev
32+
sudo apt-get install -y python3.12-distutils
33+
3134
# tools
3235
sudo apt-get install -y mc python3-pip xvfb
3336

0 commit comments

Comments
 (0)