|
8 | 8 | pull_request:
|
9 | 9 |
|
10 | 10 | jobs:
|
11 |
| - build: |
12 | 11 |
|
13 |
| - runs-on: ubuntu-latest |
| 12 | + build-sphinx-80plus: |
| 13 | + name: Build |
| 14 | + strategy: |
| 15 | + fail-fast: false |
| 16 | + matrix: |
| 17 | + python-version: [ "3.10", "3.11", "3.12" ] |
| 18 | + sphinx-version: [ |
| 19 | + "8.0.*", "8.*" # 8.0.x and latest |
| 20 | + ] |
| 21 | + uses: ./.github/workflows/build.yml |
| 22 | + with: |
| 23 | + python-version: ${{ matrix.python-version }} |
| 24 | + extra-requirements: '\ |
| 25 | + "sphinx==${{ matrix.sphinx-version }}"' |
| 26 | + |
| 27 | + |
| 28 | + build-legacy-sphinx-45plus: |
| 29 | + name: Build |
14 | 30 |
|
15 | 31 | strategy:
|
| 32 | + fail-fast: false |
16 | 33 | matrix:
|
17 |
| - python-version: ["3.8", "3.9"] |
| 34 | + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] |
18 | 35 | sphinx-version: [
|
19 |
| - "7.0.*", "7.1.*", "7.2.*", |
20 |
| - "6.0.*", |
21 |
| - "5.0.*", |
22 |
| - "4.5", "4.4", "4.3", "4.2", "4.1", "4.0.*", |
23 |
| - "3.5.*", "3.4.*", "3.2.*", "3.1.*", "3.0.*", |
| 36 | + "7.0.*", # possible range: 7.0.0 - 7.4.7 |
| 37 | + "6.0.*", # possible range: 6.0.0 - 6.2.1 |
| 38 | + "5.0.*", # possible range: 5.0.0 - 5.3.0 |
| 39 | + "4.5.*" # possible range: 4.5.0, also latest that supports py3.8 |
24 | 40 | ]
|
25 | 41 | include:
|
26 |
| - - python-version: "3.7" |
27 |
| - sphinx-version: "" |
28 |
| - - python-version: "3.7" |
29 |
| - sphinx-version: "3.5" |
30 |
| - - python-version: "3.10" |
31 |
| - sphinx-version: "" |
32 |
| - - python-version: "3.10" |
33 |
| - sphinx-version: "4.5" |
34 |
| - - python-version: "3.11" |
35 |
| - sphinx-version: "" |
36 |
| - - python-version: "3.11" |
37 |
| - sphinx-version: "4.5" |
38 |
| - exclude: |
39 |
| - - python-version: "3.8" |
40 |
| - sphinx-version: "7.2.*" |
| 42 | + - python-version: "3.9" |
| 43 | + sphinx-version: "7.2.*" # latest version that supports py3.9 |
| 44 | + uses: ./.github/workflows/build.yml |
| 45 | + with: |
| 46 | + python-version: ${{ matrix.python-version }} |
| 47 | + extra-requirements: '\ |
| 48 | + "sphinx==${{ matrix.sphinx-version }}" |
| 49 | + "sphinxcontrib-applehelp<1.0.8" |
| 50 | + "sphinxcontrib-devhelp<1.0.6" |
| 51 | + "sphinxcontrib-htmlhelp<2.0.5" |
| 52 | + "sphinxcontrib-jsmath<1.0.1" |
| 53 | + "sphinxcontrib-qthelp<1.0.7" |
| 54 | + "sphinxcontrib-serializinghtml<1.1.10"' |
| 55 | + |
41 | 56 |
|
42 |
| - steps: |
43 |
| - - uses: actions/checkout@v2 |
44 |
| - - name: Set up Python ${{ matrix.python-version }} |
45 |
| - uses: actions/setup-python@v2 |
46 |
| - with: |
47 |
| - python-version: ${{ matrix.python-version }} |
48 |
| - - name: Display Python version |
49 |
| - run: python -c "import sys; print(sys.version)" |
50 |
| - - name: Install dependencies |
51 |
| - env: |
52 |
| - SPHINX_VERSION: ${{ matrix.sphinx-version }} |
53 |
| - run: | |
54 |
| - python -m pip install --upgrade pip |
55 |
| - SPHINX=Sphinx |
56 |
| - JINJA2=jinja2 |
57 |
| - if [[ $SPHINX_VERSION != "" ]]; then |
58 |
| - SPHINX="${SPHINX}==${SPHINX_VERSION}"; |
59 |
| - JINJA2="${JINJA2}<3.1"; |
60 |
| - fi |
61 |
| - pip install pytest pytest-cov codecov "${SPHINX}" "${JINJA2}" beautifulsoup4 -e . |
62 |
| - - name: Test with pytest |
63 |
| - run: | |
64 |
| - pytest --cov=autodocsumm --cov-report=xml tests |
65 |
| - - name: Upload codecov |
66 |
| - env: |
67 |
| - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
68 |
| - run: | |
69 |
| - codecov |
| 57 | + build-legacy-sphinx-40plus: |
| 58 | + name: Build |
| 59 | + |
| 60 | + strategy: |
| 61 | + fail-fast: false |
| 62 | + matrix: |
| 63 | + python-version: [ "3.8", "3.9" ] |
| 64 | + sphinx-version: [ |
| 65 | + "4.0.*" # possible range: 4.0.0 - 4.4.0 |
| 66 | + ] |
| 67 | + uses: ./.github/workflows/build.yml |
| 68 | + with: |
| 69 | + python-version: ${{ matrix.python-version }} |
| 70 | + extra-requirements: '\ |
| 71 | + "sphinx==${{ matrix.sphinx-version }}" |
| 72 | + "sphinxcontrib-applehelp<1.0.8" |
| 73 | + "sphinxcontrib-devhelp<1.0.6" |
| 74 | + "sphinxcontrib-htmlhelp<2.0.5" |
| 75 | + "sphinxcontrib-jsmath<1.0.1" |
| 76 | + "sphinxcontrib-qthelp<1.0.7" |
| 77 | + "sphinxcontrib-serializinghtml<1.1.10"' |
| 78 | + |
| 79 | + |
| 80 | + build-legacy-sphinx-30plus: |
| 81 | + name: Build |
| 82 | + |
| 83 | + strategy: |
| 84 | + fail-fast: false |
| 85 | + matrix: |
| 86 | + python-version: [ "3.7", "3.8", "3.9" ] |
| 87 | + sphinx-version: [ |
| 88 | + "3.0.*", # possible range: 3.0.0 - 3.5.4 |
| 89 | + ] |
| 90 | + include: |
| 91 | + - python-version: "3.7" |
| 92 | + sphinx-version: "3.5.*" # latest version that supports py3.7 |
| 93 | + uses: ./.github/workflows/build.yml |
| 94 | + with: |
| 95 | + python-version: ${{ matrix.python-version }} |
| 96 | + extra-requirements: '\ |
| 97 | + "sphinx==${{ matrix.sphinx-version }}" |
| 98 | + "jinja2<3.1" |
| 99 | + "alabaster<0.7.14" |
| 100 | + "sphinxcontrib-applehelp<1.0.8" |
| 101 | + "sphinxcontrib-devhelp<1.0.6" |
| 102 | + "sphinxcontrib-htmlhelp<2.0.5" |
| 103 | + "sphinxcontrib-jsmath<1.0.1" |
| 104 | + "sphinxcontrib-qthelp<1.0.7" |
| 105 | + "sphinxcontrib-serializinghtml<1.1.10"' |
0 commit comments