Skip to content

Commit

Permalink
ci: test on 3.13 (#1308)
Browse files Browse the repository at this point in the history
* ci: test on 3.13

* chore: add 3.13 classifier
  • Loading branch information
henryiii authored Oct 7, 2024
1 parent a8f674e commit 2a14af5
Show file tree
Hide file tree
Showing 2 changed files with 8 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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
Expand Down

0 comments on commit 2a14af5

Please sign in to comment.