Skip to content

Commit

Permalink
Remove Python 3.8 from supported matrix and set minimum supported ver…
Browse files Browse the repository at this point in the history
…sion to 3.9
  • Loading branch information
misl6 committed Nov 30, 2024
1 parent 49e6217 commit e1e0596
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/manylinux_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
needs: [manylinux_wheel_create, kivy_examples_create]
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
python: ['3.9', '3.10', '3.11', '3.12', '3.13' ]
env:
DISPLAY: ':99.0'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osx_wheels_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
# macos-latest (ATM macos-14) runs on Apple Silicon,
# macos-13 runs on Intel
runs_on: ['macos-latest', 'macos-13']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
env:
KIVY_GL_BACKEND: 'mock'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_windows_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
python: ['3.9', '3.10', '3.11', '3.12', '3.13' ]
arch: ['x64']
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
python: ['3.9', '3.10', '3.11', '3.12', '3.13' ]
arch: ['x64']
if: github.event_name == 'schedule' || (github.event_name == 'create' && github.event.ref_type == 'tag') || contains(github.event.head_commit.message, '[build wheel]') || contains(github.event.head_commit.message, '[build wheel win]') || contains(github.event.pull_request.title, '[build wheel]') || contains(github.event.pull_request.title, '[build wheel win]')
steps:
Expand All @@ -34,7 +34,7 @@ jobs:
. .\.ci\windows_ci.ps1
Update-version-metadata
- name: Generate sdist/kivy-examples
if: matrix.arch == 'x64' && matrix.python == '3.8'
if: matrix.arch == 'x64' && matrix.python == '3.9'
# only windows kivy-examples is uploaded
run: |
. .\.ci\windows_ci.ps1
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
needs: windows_wheels_create
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
python: ['3.9', '3.10', '3.11', '3.12', '3.13' ]
arch: [ 'x64' ]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cython_min=0.29.1
cython_max=3.0.11
cython_exclude=
python_versions=3.8 - 3.13
python_versions=3.9 - 3.13

[coverage:run]
parallel = True
Expand All @@ -14,7 +14,7 @@ plugins =
concurrency = thread, multiprocessing

[options]
python_requires = >=3.8
python_requires = >=3.9
install_requires =
Kivy-Garden>=0.1.4
docutils
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,6 @@ def glob_paths(*patterns, excludes=('.pyc', )):
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand Down

0 comments on commit e1e0596

Please sign in to comment.