Skip to content

Commit 24db6d7

Browse files
authored
Update python and rtd config (#28)
1 parent deecfab commit 24db6d7

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

.github/workflows/codestyle.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
platform: [ubuntu-latest]
21-
python-version: [3.9]
21+
python-version: ["3.13"]
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install dependencies

.github/workflows/docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: [3.9]
21+
python-version: ["3.13"]
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install dependencies

.github/workflows/testing.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
platform: [ubuntu-latest, macos-latest, windows-latest]
21-
python-version: [3.9, '3.10', '3.11']
21+
python-version: ['3.10', '3.11', '3.12', '3.13']
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install dependencies

.readthedocs.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@ version: 2
88
build:
99
os: ubuntu-22.04
1010
tools:
11-
python: "3.9"
11+
python: "3.13"
1212
jobs:
1313
pre_build:
1414
- pip install pip setuptools wheel --upgrade
1515
- pip install -e .[docs,all]
1616

17+
sphinx:
18+
# Path to your Sphinx configuration file.
19+
configuration: docs/conf.py
20+
1721
# Optionally build your docs in additional formats such as PDF and ePub
1822
formats:
1923
- pdf

0 commit comments

Comments
 (0)