Skip to content

Commit 3ad1a71

Browse files
authored
Merge pull request #523 from henryiii/henryiii/ci/313
ci: add 3.13 tests and classifier
2 parents 85af144 + 2e40ad9 commit 3ad1a71

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: .github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
strategy:
1818
matrix:
1919
runs-on: [ ubuntu-latest ]
20-
python-version: [ "3.8", "3.10", "3.11", "3.12" ]
20+
python-version: [ "3.8", "3.10", "3.11", "3.12", "3.13"]
2121
include: # testing the last "reasonable supported" version
2222
- runs-on: macOS-13
2323
python-version: "3.9"
2424
- runs-on: macOS-14
25-
python-version: "3.10" # min version available for Apple silicon
25+
python-version: "3.8" # min version available for Apple silicon
2626
- runs-on: windows-latest
2727
python-version: "3.9"
2828

@@ -33,6 +33,7 @@ jobs:
3333
uses: actions/setup-python@v4
3434
with:
3535
python-version: ${{ matrix.python-version }}
36+
allow-prereleases: true
3637

3738
- name: Install core fonts
3839
if: runner.os == 'Linux'
@@ -42,7 +43,7 @@ jobs:
4243
4344
- name: Install dependencies
4445
run: |
45-
python -m pip install --upgrade pip setuptools wheel pytest-github-actions-annotate-failures
46+
python -m pip install --upgrade pip pytest-github-actions-annotate-failures
4647
python -m pip install -q --no-cache-dir -e .[all]
4748
python -m pip list
4849

Diff for: pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Topic :: Scientific/Engineering :: Physics",
2728
]
2829
dependencies = [
@@ -45,8 +46,6 @@ dev = [
4546
test = [
4647
"boost_histogram",
4748
"hist",
48-
"nteract-scrapbook~=0.3",
49-
"papermill~=1.0",
5049
"pytest-mock",
5150
"pytest-mpl",
5251
"pytest>=6.0",

0 commit comments

Comments
 (0)