Skip to content

Commit 29e0a6f

Browse files
Fix CI failures (#133)
* Bump cache action version to v4 * Explicitly set the sphinx conf path in readthedocs * Bump python version in the release action * Make Python version a string
1 parent df95732 commit 29e0a6f

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
- name: Checkout source
1111
uses: actions/checkout@v2
1212

13-
- name: Set up Python 3.8
14-
uses: actions/setup-python@v1
13+
- name: Set up Python 3.10
14+
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.8
16+
python-version: "3.10"
1717

1818
- name: Install pypa/build
1919
run: python -m pip install build wheel pyyaml

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v2
3333
- name: Cache conda
34-
uses: actions/cache@v2
34+
uses: actions/cache@v4
3535
env:
3636
# Increase this value to reset cache if ci/environment.yml has not changed
3737
CACHE_NUMBER: 0

readthedocs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
version: 2
22

3+
sphinx:
4+
configuration: docs/source/conf.py
5+
36
build:
47
os: "ubuntu-22.04"
58
tools:

0 commit comments

Comments
 (0)