Skip to content

Commit

Permalink
Add Python 3.12 to matrix (#134)
Browse files Browse the repository at this point in the history
* Add Python 3.12 to matrix

* Add workaround
  • Loading branch information
yakimka authored Nov 19, 2023
1 parent b3573d2 commit 7eb5813
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions tests/test_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ cd "$PROJECT_NAME"

# Create new venv:
python3 -m venv .venv
# Workaround for https://github.com/python/cpython/issues/112252
export OSTYPE="linux-gnu"

. .venv/bin/activate
pip install -U pip

Expand Down

0 comments on commit 7eb5813

Please sign in to comment.