Skip to content
This repository was archived by the owner on Aug 31, 2025. It is now read-only.

Commit 87c3b5a

Browse files
committed
Remove support for Python 3.5 and 3.6, add support for 3.9-3.11
1 parent 129295d commit 87c3b5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-18.04, ubuntu-latest, macos-10.15, macos-latest, windows-2019, windows-latest]
15-
python-version: ['3.5', '3.6', '3.7', '3.8']
15+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11-dev']
1616
fail-fast: false
1717
runs-on: ${{ matrix.os }}
1818
name: Test Py ${{ matrix.python-version }} - ${{ matrix.os }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
"mu.modes.api",
130130
"mu.wheels",
131131
],
132-
python_requires=">=3.5,<3.9",
132+
python_requires=">=3.7,<3.11",
133133
install_requires=install_requires,
134134
extras_require=extras_require,
135135
package_data={"mu.wheels": ["*.whl", "*.zip"]},

0 commit comments

Comments
 (0)