Skip to content

Commit e896099

Browse files
committed
bump minimum python version to 3.10
.. this is what is used during the build of the adafruit bundle right now.
1 parent 87ba4b6 commit e896099

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
env:
1616
GITHUB_CONTEXT: ${{ toJson(github) }}
1717
run: echo "$GITHUB_CONTEXT"
18-
- name: Set up Python 3.7
18+
- name: Set up Python 3.10
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.7
21+
python-version: 3.10
2222
- name: Versions
2323
run: |
2424
python3 --version

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.7'
20+
python-version: '3.10'
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ requests
33
semver
44
wheel
55
tomli; python_version < "3.11"
6-
importlib_metadata; python_version < "3.8"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'circuitpython_build_tools.scripts'],
1414
package_data={'circuitpython_build_tools': ['data/mpy-cross-*']},
1515
zip_safe=False,
16-
python_requires='>=3.7',
16+
python_requires='>=3.10',
1717
install_requires=['Click', 'requests', 'semver', 'tomli; python_version < "3.11"'],
1818
entry_points='''
1919
[console_scripts]

0 commit comments

Comments
 (0)