Skip to content

Commit b6b0633

Browse files
committed
bump python to 3.9
1 parent 074c31f commit b6b0633

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.6
21+
python-version: 3.9
2222
- name: Install svdtools
2323
run: |
2424
python -m pip install --upgrade pip
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install Python
5555
uses: actions/setup-python@v2
5656
with:
57-
python-version: 3.6
57+
python-version: 3.9
5858
- name: Install svdtools
5959
run: |
6060
python -m pip install --upgrade pip

CHANGELOG-python.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ This changelog tracks the Python `svdtools` project. See
55

66
## [Unreleased]
77

8+
* Bump python to 3.9 to fix CI
9+
810
## [v0.1.25] 2022-09-04
911

1012
* Fix bug in deriving registers (#124)

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ author-email = "[email protected]"
1010
maintainer = "Nicolas Stalder"
1111
maintainer-email = "[email protected]"
1212
home-page = "https://github.com/stm32-rs/svdtools"
13-
requires-python = ">=3.6"
13+
requires-python = ">=3.9"
1414
description-file = "README.md"
1515
requires = [
1616
"click ~= 8.0",
@@ -24,8 +24,7 @@ classifiers=[
2424
"Intended Audience :: Developers",
2525
"Intended Audience :: End Users/Desktop",
2626
"Programming Language :: Python :: 3 :: Only",
27-
"Programming Language :: Python :: 3.6",
28-
"Programming Language :: Python :: 3.7",
27+
"Programming Language :: Python :: 3.9",
2928
]
3029

3130
[tool.flit.scripts]

0 commit comments

Comments
 (0)