Skip to content

Commit 0c8347f

Browse files
authored
Fix documentation build. (#43)
Fix documentation build. Apparently trying to find a NumPy that works with Python 3.7-3.11 is challenging. See also: #38
1 parent 9bab583 commit 0c8347f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_test_deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-python@v4
1616
with:
17-
python-version: "3.10"
17+
python-version: "3.7"
1818
- run: curl -sSL https://install.python-poetry.org | python3 -
1919
- run: poetry install
2020
- run: poetry run task test
@@ -60,7 +60,7 @@ jobs:
6060
path: gh-pages
6161
- uses: actions/setup-python@v4
6262
with:
63-
python-version: "3.11"
63+
python-version: "3.7"
6464
- run: curl -sSL https://install.python-poetry.org | python3 -
6565
- run: poetry install
6666
- run: poetry run task docs
@@ -84,7 +84,7 @@ jobs:
8484
- uses: actions/checkout@v3
8585
- uses: actions/setup-python@v4
8686
with:
87-
python-version: "3.11"
87+
python-version: "3.7"
8888
- run: curl -sSL https://install.python-poetry.org | python3 -
8989
- run: poetry build
9090
- run: poetry publish -u __token__ -p ${{ secrets.CHECK_SHAPES_PYPI_TOKEN }}

0 commit comments

Comments
 (0)