Skip to content

Commit bd2442b

Browse files
committed
Drop support for EOL Python 2.7 and 3.4-3.5
1 parent a6edfc2 commit bd2442b

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ on:
1212
jobs:
1313
test:
1414
name: "Python ${{ matrix.python-version }} ${{ matrix.name-suffix }}"
15-
runs-on: ubuntu-18.04
15+
runs-on: ubuntu-20.04
1616

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

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

appveyor.yml

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

66
environment:
77
matrix:
8-
- PYTHON: "C:\\Python27"
9-
- PYTHON: "C:\\Python27-x64"
10-
- PYTHON: "C:\\Python34"
11-
- PYTHON: "C:\\Python34-x64"
12-
- PYTHON: "C:\\Python35"
13-
- PYTHON: "C:\\Python35-x64"
148
- PYTHON: "C:\\Python36"
159
- PYTHON: "C:\\Python36-x64"
1610
- PYTHON: "C:\\Python37"

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,15 @@
99
url='https://github.com/matplotlib/cycler',
1010
platforms='Cross platform (Linux, Mac OSX, Windows)',
1111
license="BSD",
12-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
12+
python_requires='>=3.6',
1313
classifiers=['License :: OSI Approved :: BSD License',
1414
'Development Status :: 4 - Beta',
15-
'Programming Language :: Python :: 2',
16-
'Programming Language :: Python :: 2.7',
1715
'Programming Language :: Python :: 3',
18-
'Programming Language :: Python :: 3.4',
19-
'Programming Language :: Python :: 3.5',
2016
'Programming Language :: Python :: 3.6',
2117
'Programming Language :: Python :: 3.7',
2218
'Programming Language :: Python :: 3.8',
2319
'Programming Language :: Python :: 3.9',
20+
'Programming Language :: Python :: 3 :: Only',
2421
],
2522
keywords='cycle kwargs',
2623
)

0 commit comments

Comments
 (0)