Skip to content

Commit 5a38ddc

Browse files
authored
Merge pull request #17 from lumapps/chore/py312
chore(python): migrate to 3.12
2 parents e1ea063 + 59e0096 commit 5a38ddc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
default_language_version:
3-
python: python3.11
3+
python: python3.12
44

55
repos:
66
# Apply a selection of the pre-commit built-in validators

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PYTHON ?= python3.11
1+
PYTHON ?= python3.12
22
VIRTUAL_ENV ?= ./venv
33

44
$(VIRTUAL_ENV): setup.cfg setup.py dev-requirements.txt requirements.txt

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ To get a local copy up and running follow these steps.
7979

8080
### Prerequisites
8181

82-
1. Install python3.11
82+
1. Install python3.12
8383

8484
```sh
8585
sudo apt install python3

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ runs:
3535
- name: Install Python ${{ env.python-version }}
3636
uses: actions/setup-python@v4
3737
with:
38-
python-version: '3.11'
38+
python-version: '3.12'
3939
- name: Generate
4040
id: generate
4141
run: |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
maintainer="LumApps core team",
99
maintainer_email="[email protected]",
1010
url="https://github.com/lumapps/changelog-generator",
11-
python_requires="~=3.11",
11+
python_requires="~=3.12",
1212
setup_requires=[],
1313
install_requires=["gitpython", "jinja2"],
1414
extras_require={},

0 commit comments

Comments
 (0)