Skip to content

Commit

Permalink
dev: Support Python versions 3.9/3.10/3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
florisla committed Oct 9, 2023
1 parent 402c8ca commit fb4b6ed
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os:
- ubuntu-latest
python-version:
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -30,7 +30,7 @@ jobs:
os:
- ubuntu-latest
python-version:
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -48,7 +48,7 @@ jobs:
os:
- ubuntu-latest
python-version:
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,9 @@ jobs:
- ubuntu-latest
- windows-latest
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "pypy-3.7"
- "pypy-3.8"
- "3.11"
- "pypy-3.9"
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


DEFAULT_PYTHON_VERSION = "3.11"
ALL_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11"]
ALL_PYTHON_VERSIONS = ["3.9", "3.10", "3.11"]


@nox.session(python=ALL_PYTHON_VERSIONS)
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
URL = 'https://github.com/florisla/stm32loader'
EMAIL = 'florisla@gmail.com'
AUTHOR = 'Floris Lambrechts'
REQUIRES_PYTHON = '>=3.6.0'
REQUIRES_PYTHON = '>=3.9.0'
PROJECT_URLS = {
"Bug Tracker": "https://github.com/florisla/stm32loader/issues",
"Source Code": "https://github.com/florisla/stm32loader",
Expand Down Expand Up @@ -64,11 +64,9 @@
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down

0 comments on commit fb4b6ed

Please sign in to comment.