Skip to content

Commit 57b535d

Browse files
committed
Expanded Python versions + Dropped Python 3.8 + Fixed RTD
1 parent e4ab9db commit 57b535d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
flake8-black-lint:
1212
runs-on: ubuntu-latest
13-
name: Flake8 code check
13+
name: Flake8 / Black code check
1414
steps:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-python@v4

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
fail-fast: true
2121
matrix:
2222
os: ["ubuntu-latest"]
23-
python-version: ["3.8", "3.9", "3.10"]
23+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2424
include:
2525
- os: "windows-latest"
26-
python-version: "3.10"
26+
python-version: "3.11"
2727

2828
steps:
2929
- uses: actions/checkout@v3

.readthedocs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2
99
build:
1010
os: ubuntu-22.04
1111
tools:
12-
python: "3.10"
12+
python: "3.11"
1313

1414
# Build documentation in the "docs/" directory with Sphinx
1515
sphinx:
@@ -25,7 +25,7 @@ sphinx:
2525
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
2626
python:
2727
install:
28-
- requirements: requirements.txt
29-
- requirements: requirements-dev.txt
3028
- method: pip
3129
path: .
30+
extra_requirements:
31+
- doc

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = "A tool to create PLC documentation for Sphinx"
1212
readme = "README.md"
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1414
license = {text = "BSD-3-Clause"}
1515
classifiers = [
1616
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)