From 0a033ac82964de15c8bc537a7e65d6c2d17fc747 Mon Sep 17 00:00:00 2001 From: nennigb Date: Tue, 3 Sep 2024 20:49:31 +0200 Subject: [PATCH] explore ci pb --- .github/workflows/ci-ubuntu.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-ubuntu.yml b/.github/workflows/ci-ubuntu.yml index 5a835df..8407a54 100644 --- a/.github/workflows/ci-ubuntu.yml +++ b/.github/workflows/ci-ubuntu.yml @@ -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 }} @@ -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