Skip to content

Commit

Permalink
explore ci pb
Browse files Browse the repository at this point in the history
  • Loading branch information
nennigb authored Sep 3, 2024
1 parent 13151c9 commit 0a033ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.11']
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -35,7 +35,7 @@ jobs:
- name: Install the package
run: |
export SETUPTOOLS_ENABLE_FEATURES="legacy-editable"
pip install -e .
pip install -e . -v
# Show f2py compiler info for debug
f2py -c --help-fcompiler
- name: Run tests
Expand Down

0 comments on commit 0a033ac

Please sign in to comment.