Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
include:
#- os: macos-latest
# python-version: "3.14"
Expand All @@ -39,7 +39,10 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install package with test dependencies
run: pip install .[test]
# matplotlib is not a dependency but tests need it
run: |
pip install .[test]
pip install matplotlib

- name: Test installation without nbdime
run: pytest -v
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ keywords = [
"matplotlib",
"python",
]
license = {file = "LICENSE"}
license = "BSD-3-Clause"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.9"

Expand Down