Merge 09dde52fe57e83a7335eae2d992212f8d6ecce20 into 83d301c604edaf14825ca6c67c256fe910e0729e

This commit is contained in:
Val Lorentz 2025-04-20 08:19:48 +02:00 committed by GitHub
commit e95e761f5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 10 deletions

View File

@ -62,13 +62,6 @@ jobs:
with-opt-deps: false with-opt-deps: false
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
- python-version: "3.6"
with-opt-deps: false
runs-on: ubuntu-20.04
- python-version: "pypy-3.6"
with-opt-deps: false
runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}

View File

@ -107,8 +107,8 @@ if version:
fd.write(' pass\n') fd.write(' pass\n')
fd.close() fd.close()
if sys.version_info < (3, 6, 0): if sys.version_info < (3, 7, 0):
sys.stderr.write("Limnoria requires Python 3.6 or newer.") sys.stderr.write("Limnoria requires Python 3.7 or newer.")
sys.stderr.write(os.linesep) sys.stderr.write(os.linesep)
sys.exit(-1) sys.exit(-1)
@ -201,7 +201,6 @@ setup(
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Operating System :: POSIX', 'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',