Skip to content

Commit

Permalink
[Github Actions] Linux build workflow improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
buffer committed Jan 9, 2024
1 parent d8800cc commit 262a2e2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 150 deletions.
74 changes: 0 additions & 74 deletions .github/workflows/build-linux-python311.yml

This file was deleted.

74 changes: 0 additions & 74 deletions .github/workflows/build-linux-python39.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-22.04]

steps:
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
envlist = py39, py310, py311
envlist = py39, py310, py311, py312

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[stpyv8]
version =
Expand Down Expand Up @@ -51,3 +52,7 @@ setenv =
[testenv:py311]
setenv =
STPYV8_WHEEL = stpyv8-{[stpyv8]version}-cp311-cp311-manylinux_2_31_x86_64.whl

[testenv:py312]
setenv =
STPYV8_WHEEL = stpyv8-{[stpyv8]version}-cp312-cp312-manylinux_2_31_x86_64.whl

0 comments on commit 262a2e2

Please sign in to comment.