Skip to content

Commit 3be0de8

Browse files
committed
Remove pytest py3.11b2 workaround
1 parent 5f19796 commit 3be0de8

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/test.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
matrix:
7171
os: [ubuntu, macos, windows]
7272
python-version: ["3.11-dev"]
73-
sphinx-version: ["sphinx==4.0", "sphinx==4.5"]
73+
sphinx-version: ["sphinx==4.0.2", "sphinx==4.5"]
7474
steps:
7575
- uses: actions/checkout@v3
7676

@@ -86,20 +86,14 @@ jobs:
8686
python -m pip install ${{ matrix.sphinx-version }}
8787
python -m pip list
8888
89-
- name: Downgrade Jinja2 for sphinx<4
90-
if: ${{ matrix.sphinx-version }} == 'sphinx<4.0.2'
91-
run: python -m pip install jinja2==3.0.3 markupsafe==2.0.1 pydata-sphinx-theme==0.8.0
92-
9389
- name: Install
9490
run: |
9591
python -m pip install .
9692
pip list
9793
9894
- name: Run test suite
9995
run: |
100-
# NOTE: --assert=plain necessary to work around known pytest issue.
101-
# See pytest-dev/pytest#10008
102-
pytest -v --pyargs --assert=plain numpydoc
96+
pytest -v --pyargs numpydoc
10397
10498
- name: Make sure CLI works
10599
run: |

0 commit comments

Comments
 (0)