diff options
author | Jean-François B <2589111+jfbu@users.noreply.github.com> | 2023-03-26 23:52:55 +0200 |
---|---|---|
committer | Jean-François B <2589111+jfbu@users.noreply.github.com> | 2023-03-26 23:52:55 +0200 |
commit | 321f8860970664ba343dc53e4d26e380a1bc20b2 (patch) | |
tree | 710cf49155d162f882942ec332779ab11aa97ebe | |
parent | 318914fff21df82d9a3eb6aabedc51373d3a1d25 (diff) | |
download | sphinx-git-321f8860970664ba343dc53e4d26e380a1bc20b2.tar.gz |
Provis. ignore onerror depr. warn when install. DocUtils with 3.12-dev
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ec7730c1f..6468beb08 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -58,6 +58,12 @@ jobs: PYTHONWARNINGS: "" - name: Install Docutils ${{ matrix.docutils }} run: python -m pip install --upgrade "docutils==${{ matrix.docutils }}.*" + if: "!endsWith(matrix.python, '-dev')" + - name: Install Docutils ${{ matrix.docutils }} (ignore warnings) + run: python -m pip install --upgrade "docutils==${{ matrix.docutils }}.*" + if: "endsWith(matrix.python, '-dev')" + env: + PYTHONWARNINGS: "" - name: Test with pytest run: python -m pytest -vv --durations 25 |