Skip to content

Commit

Permalink
ci: test on 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Oct 3, 2024
1 parent 7ed26a2 commit eafe89a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
conda list
- name: Install sshd for fsspec ssh tests
if: runner.os != 'macOS' && runner.os != 'Windows'
if: runner.os != 'macOS' && runner.os != 'Windows'
run: |
sudo apt-get install -y openssh-server
sudo service ssh restart
Expand All @@ -59,7 +59,7 @@ jobs:
ssh -o StrictHostKeyChecking=no localhost echo "ssh connection successful"
- name: Install XRootD
if: runner.os != 'macOS' && runner.os != 'Windows'
if: runner.os != 'macOS' && runner.os != 'Windows'
run: |
conda env list
mamba install xrootd
Expand All @@ -77,7 +77,7 @@ jobs:
fail-fast: false
matrix:
platform: [windows-latest, ubuntu-latest, macos-latest]
python-version: ['3.11']
python-version: ['3.13']

runs-on: ${{ matrix.platform }}
timeout-minutes: 30
Expand All @@ -88,9 +88,12 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- uses: astral-sh/setup-uv@v3

- name: Pip install the package
run: python -m pip install .[test,dev]
run: uv pip install --system .[test,dev]

- name: Run pytest
run: |
Expand Down

0 comments on commit eafe89a

Please sign in to comment.