Skip to content

Commit e6e12d9

Browse files
committed
Remove 3.6 support and update Python setup version
1 parent d8e72d9 commit e6e12d9

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/reviewdog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
- uses: actions/checkout@v2
1111

1212
- name: Set up Python 3
13-
uses: actions/setup-python@v1
13+
uses: actions/setup-python@v3
1414
with:
15-
python-version: 3.8
15+
python-version: 3.9
1616

1717
- name: Install flake8
1818
run: pip3 install flake8

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

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

2121
steps:
2222
- uses: actions/checkout@v2
2323
with:
2424
fetch-depth: 0
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v3
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

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, macOS, 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)