Skip to content

Update sphinx requirement from ~=7.1.2 to ~=7.3.4 #374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 17, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -U -r requirements.txt
run: pip install -U -r docs/requirements-doc.txt
- name: Make docs
run: |
cd docs
6 changes: 4 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -81,19 +81,21 @@ jobs:
run: |
coverage combine coverage-linux*/.coverage
coverage xml -o coverage-linux.xml
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
verbose: true
flags: linux
files: coverage-linux.xml
token: ${{ secrets.CODECOV_TOKEN }}
- name: Combine Windows coverage results
run: |
coverage combine coverage-windows*/.coverage
coverage xml -o coverage-windows.xml
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
verbose: true
flags: windows
files: coverage-windows.xml
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion docs/requirements-doc.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-e .
myst-parser~=2.0
sphinx~=7.1.2
sphinx~=7.3.4
furo==2024.1.29
types-docutils~=0.20
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Coverage + local install of package
-e .
-r requirements-coverage.txt
# Requirements for docs building
-r docs/requirements-doc.txt

# Requirements for testing and linting
pytest==8.1.1