Skip to content

Commit 82af7fd

Browse files
committed
add ReadtheDocs config; officially support python3.13
1 parent 2311513 commit 82af7fd

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.7", "3.9", "3.12"]
15+
python-version: ["3.7", "3.9", "3.11", "3.13"]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}

.readthedocs.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Read the Docs configuration file
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
# Required
5+
version: 2
6+
7+
# Set the OS, Python version, and other tools you might need
8+
build:
9+
os: ubuntu-24.04
10+
tools:
11+
python: "3.13"
12+
13+
# # Build documentation in the "docs/" directory with Sphinx
14+
# sphinx:
15+
# configuration: docs/conf.py
16+
17+
# declare the Python requirements required to build your documentation
18+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
19+
python:
20+
install:
21+
- method: pip
22+
path: .
23+
extra_requirements:
24+
- test
25+
- apps

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ classifiers = [
77
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
88
"Operating System :: OS Independent",
99
"Programming Language :: Python :: 3",
10-
"Programming Language :: Python :: 3.7",
1110
"Programming Language :: Python :: 3.8",
1211
"Programming Language :: Python :: 3.9",
1312
"Programming Language :: Python :: 3.10",
1413
"Programming Language :: Python :: 3.11",
1514
"Programming Language :: Python :: 3.12",
15+
"Programming Language :: Python :: 3.13",
1616
"Topic :: Scientific/Engineering",
1717
"Topic :: Communications :: Ham Radio",
1818
]

0 commit comments

Comments
 (0)