Skip to content

Commit

Permalink
support py312
Browse files Browse the repository at this point in the history
  • Loading branch information
ponty committed Nov 4, 2023
1 parent 5ef53ff commit 845d04e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
stdfile:
- "pipe"
- "tempfile"
Expand All @@ -48,6 +49,9 @@ jobs:
- python-version: "3.11"
os: ubuntu-20.04
stdfile: "tempfile"
- python-version: "3.12"
os: ubuntu-20.04
stdfile: "tempfile"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Features:
- stdout/stderr is set only after the subprocess has finished
- stop() does not kill whole subprocess tree
- unicode support
- supported python versions: 3.7, 3.8, 3.9, 3.10, 3.11
- supported python versions: 3.7, 3.8, 3.9, 3.10, 3.11, 3.12
- [Method chaining](https://en.wikipedia.org/wiki/Method_chaining)

Installation:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]


Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[tox]
envlist =
py312
py312-{tempfile,pipe}
py311
py311-{tempfile,pipe}
py310
Expand Down
3 changes: 3 additions & 0 deletions vagrant.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ sudo apt-get install -y python3.10-distutils
sudo apt-get install -y python3.11-dev
sudo apt-get install -y python3.11-distutils

sudo apt-get install -y python3.12-dev
sudo apt-get install -y python3.12-distutils

# tools
sudo apt-get install -y mc python3-pip xvfb

Expand Down

0 comments on commit 845d04e

Please sign in to comment.