Skip to content

Commit 027cd6e

Browse files
authored
Drop python 3.6 support (#274)
1 parent a34b606 commit 027cd6e

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,6 @@ jobs:
8383
no-extensions: 'Y'
8484
- os: windows
8585
no-extensions: 'Y'
86-
include:
87-
- pyver: pypy3
88-
no-extensions: 'Y'
89-
os: ubuntu
9086
fail-fast: false
9187
runs-on: ${{ matrix.os }}-latest
9288
timeout-minutes: 15

CHANGES/274.removal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Dropped Python 3.6 support

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ def read(f):
5151
'A list-like structure which implements '
5252
'collections.abc.MutableSequence'
5353
),
54-
long_description='\n\n'.join((read('README.rst'), read('CHANGES.rst'))),
54+
long_description=read('README.rst'),
5555
long_description_content_type="text/x-rst",
5656
classifiers=[
5757
'License :: OSI Approved :: Apache Software License',
5858
'Intended Audience :: Developers',
5959
'Programming Language :: Python',
6060
'Programming Language :: Python :: 3',
61-
'Programming Language :: Python :: 3.6',
6261
'Programming Language :: Python :: 3.7',
6362
'Programming Language :: Python :: 3.8',
6463
'Programming Language :: Python :: 3.9',
64+
'Programming Language :: Python :: 3.10',
6565
'Development Status :: 5 - Production/Stable',
6666
'Operating System :: POSIX',
6767
'Operating System :: MacOS :: MacOS X',
@@ -84,7 +84,7 @@ def read(f):
8484
license='Apache 2',
8585
packages=['frozenlist'],
8686
ext_modules=ext_modules,
87-
python_requires='>=3.6',
87+
python_requires='>=3.7',
8888
install_requires=install_requires,
8989
include_package_data=True,
9090
exclude_package_data={"": ["*.c"]},

0 commit comments

Comments
 (0)