Skip to content

Commit

Permalink
install gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech authored Sep 27, 2024
1 parent 1552a59 commit 0243634
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
build:
strategy:
matrix:
version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
# version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
version: ["3.9"]
runs-on: "cirun-aws-t2-large-ubuntu2204--${{ github.run_id }}"
defaults:
run:
Expand All @@ -31,6 +32,10 @@ jobs:
python-version: 3.13
channels: defaults,ad-testing/label/py313_nogil

- name: Install build essentials
run: |
conda install gcc -c conda-forge -y
- name: Check Python version
run: |
python -VV
Expand Down Expand Up @@ -58,4 +63,4 @@ jobs:
- name: Run Tests
run: python -m unittest discover tests/ -vvv
env:
PYTHON_GIL: 0
PYTHON_GIL: 0

0 comments on commit 0243634

Please sign in to comment.