Skip to content

Commit 59e7a6f

Browse files
committed
Drop support for Python 3.6 to match Matplotlib/NEP 29
1 parent c128a30 commit 59e7a6f

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.6", "3.7", "3.8", "3.9"]
19+
python-version: ["3.7", "3.8", "3.9"]
2020

2121
steps:
2222
- uses: actions/checkout@v2

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ image: Visual Studio 2019
55

66
environment:
77
matrix:
8-
- PYTHON: "C:\\Python36"
9-
- PYTHON: "C:\\Python36-x64"
108
- PYTHON: "C:\\Python37"
119
- PYTHON: "C:\\Python37-x64"
1210
- PYTHON: "C:\\Python38"

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@
99
url='https://github.com/matplotlib/cycler',
1010
platforms='Cross platform (Linux, Mac OSX, Windows)',
1111
license="BSD",
12-
python_requires='>=3.6',
12+
python_requires='>=3.7',
1313
classifiers=['License :: OSI Approved :: BSD License',
1414
'Development Status :: 4 - Beta',
1515
'Programming Language :: Python :: 3',
16-
'Programming Language :: Python :: 3.6',
1716
'Programming Language :: Python :: 3.7',
1817
'Programming Language :: Python :: 3.8',
1918
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)