Skip to content

Commit

Permalink
Merge pull request #523 from henryiii/henryiii/ci/313
Browse files Browse the repository at this point in the history
ci: add 3.13 tests and classifier
  • Loading branch information
jonas-eschle authored Oct 8, 2024
2 parents 85af144 + 2e40ad9 commit 3ad1a71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
strategy:
matrix:
runs-on: [ ubuntu-latest ]
python-version: [ "3.8", "3.10", "3.11", "3.12" ]
python-version: [ "3.8", "3.10", "3.11", "3.12", "3.13"]
include: # testing the last "reasonable supported" version
- runs-on: macOS-13
python-version: "3.9"
- runs-on: macOS-14
python-version: "3.10" # min version available for Apple silicon
python-version: "3.8" # min version available for Apple silicon
- runs-on: windows-latest
python-version: "3.9"

Expand All @@ -33,6 +33,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install core fonts
if: runner.os == 'Linux'
Expand All @@ -42,7 +43,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel pytest-github-actions-annotate-failures
python -m pip install --upgrade pip pytest-github-actions-annotate-failures
python -m pip install -q --no-cache-dir -e .[all]
python -m pip list
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,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 :: Physics",
]
dependencies = [
Expand All @@ -45,8 +46,6 @@ dev = [
test = [
"boost_histogram",
"hist",
"nteract-scrapbook~=0.3",
"papermill~=1.0",
"pytest-mock",
"pytest-mpl",
"pytest>=6.0",
Expand Down

0 comments on commit 3ad1a71

Please sign in to comment.