Skip to content

Commit 5125fd6

Browse files
committed
Make minimum Python version 3.8
1 parent 1b3659f commit 5125fd6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# lbuild: generic, modular code generation in Python 3
22

3-
The Library Builder (pronounced *lbuild*) is a BSD licensed [Python 3.5 tool][python]
3+
The Library Builder (pronounced *lbuild*) is a BSD licensed [Python 3 tool][python]
44
for describing repositories containing modules which can copy or generate a set
55
of files based on the user provided data and options.
66

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
setup(
1818
name = "lbuild",
1919
version = __version__,
20-
python_requires=">=3.5.0",
20+
python_requires=">=3.8.0",
2121
entry_points={
2222
"console_scripts": [
2323
"lbuild = lbuild.main:main",
@@ -58,7 +58,6 @@
5858
"Operating System :: OS Independent",
5959
"Programming Language :: Python",
6060
"Programming Language :: Python :: 3",
61-
"Programming Language :: Python :: 3.5",
6261
"Topic :: Software Development",
6362
"Topic :: Software Development :: Code Generators",
6463
"Topic :: Software Development :: Embedded Systems",

0 commit comments

Comments
 (0)