Skip to content

Commit 7e3e0d5

Browse files
authored
Merge pull request #2663 from Kodiologist/update-pytest
Require a newer pytest
2 parents 556bc76 + 26fa5ac commit 7e3e0d5

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
rm -r hy
4545
# We want to be sure we're testing the installed version,
4646
# instead of running from the source tree.
47-
pip install pytest
47+
pip install 'pytest >= 8.4.1'
4848
- name: Test
4949
shell: bash
5050
run: python -m pytest tests
@@ -62,5 +62,5 @@ jobs:
6262
- name: Install
6363
run: |
6464
pip install .
65-
pip install -r requirements-dev.txt
65+
pip install -r docs/requirements.txt
6666
- run: sphinx-build -W -b html docs/ docs/_build/

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ If you want to run the tests while skipping the slow ones in ``test_bin.py``, us
8686
Documentation
8787
-------------
8888

89-
Generally, new features deserve coverage in the manual, either by editing the manual files directly or by changing docstrings that get included in the manual. To render the manual, install its dependencies with ``pip install -r requirements-dev.txt`` and then use the command ``cd docs; sphinx-build . _build -b html``.
89+
Generally, new features deserve coverage in the manual, either by editing the manual files directly or by changing docstrings that get included in the manual. To render the manual, install its dependencies with ``pip install -r docs/requirements.txt`` and then use the command ``cd docs; sphinx-build . _build -b html``.
9090

9191
NEWS and AUTHORS
9292
----------------

requirements-dev.txt renamed to docs/requirements.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
pytest >= 7
2-
3-
# documentation
41
Pygments >= 2.18.0
52
Sphinx == 5.0.2
63
standard-imghdr

0 commit comments

Comments
 (0)