Skip to content

Commit

Permalink
install no-gil python from miniconda
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech authored Jul 18, 2024
1 parent d22d623 commit 0e0dd00
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
matrix:
version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand All @@ -19,6 +22,16 @@ jobs:
python-version: "${{ matrix.version }}"
allow-prereleases: true

- name: Setup Miniconda
uses: conda-incubator/[email protected]
with:
python-version: 3.13
channels: defaults,ad-testing/label/py313_nogil
- name: Check Python version
run: |
python -VV
python -c "import sys; print(sys._is_gil_enabled())"
- name: Install dependencies
run: |
pip install setuptools
Expand Down

0 comments on commit 0e0dd00

Please sign in to comment.