Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
strategy:
matrix:
os: [ubuntu]
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5

Expand All @@ -95,7 +95,7 @@ jobs:

- name: Install
run: |
python -m pip install . --group test --group doc
python -m pip install --pre . --group test --group doc
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this just to catch pre-releases on pypi, or would you prefer to pull from the Nightly Wheels? Either way is fine, changes look good :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The most important dependency to catch (IMO) is sphinx - that's really where numpydoc would benefit from dev-testing to ensure that sphinx changes don't break the extension. AFAIK there are no sphinx nightlies, so catching the RC's is as good as we can do for now!

pip list

- name: Run test suite
Expand Down
Loading