Skip to content

Commit 7cd7a82

Browse files
authored
Merge pull request #81 from oscargus/fixes
Correct version, drop Python 3.6, update Python setup
2 parents e5c42f2 + e6e12d9 commit 7cd7a82

4 files changed

Lines changed: 6 additions & 7 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

cycler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
from itertools import product, cycle
4747
from operator import mul, add
4848

49-
__version__ = '0.10.0'
49+
__version__ = '0.12.0.dev0'
5050

5151

5252
def _process_keys(left, right):

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)