We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13feb1f + 790b9c1 commit bdb2bdfCopy full SHA for bdb2bdf
2 files changed
.github/workflows/tests.yml
@@ -42,6 +42,10 @@ jobs:
42
needs: [configure]
43
runs-on: ubuntu-22.04
44
strategy:
45
+ # coveralls frequently fails with 500 errors, retrying usually helps.
46
+ # The default fail-fast=true would stop the running jobs on the first
47
+ # failure, which can make it harder to get all jobs passing.
48
+ fail-fast: false
49
matrix:
50
python: ${{ fromJSON(needs.configure.outputs.python_versions) }}
51
django: ${{ fromJSON(needs.configure.outputs.django_versions) }}
.readthedocs.yml
@@ -0,0 +1,12 @@
1
+# Read the Docs configuration file for Sphinx projects
2
+# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+version: 2
5
6
+build:
7
+ os: ubuntu-lts-latest
8
+ tools:
9
+ python: "3.13"
10
11
+sphinx:
12
+ configuration: docs/conf.py
0 commit comments