Skip to content

Commit

Permalink
GitHub Actions: setup-python allow-prereleases for Py3.12 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Sep 8, 2023
1 parent f6af11a commit f484ef8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/node-gyp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python: ["3.8", "3.x", "3.12-dev"]
python: ["3.8", "3.x", "3.12"]

runs-on: ${{ matrix.os }}
steps:
Expand All @@ -30,6 +30,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- name: Install Python dependencies
run: |
cd gyp-next
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ jobs:
max-parallel: 5
matrix:
os: [macos-latest, ubuntu-latest] # , windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
Expand Down

0 comments on commit f484ef8

Please sign in to comment.