Skip to content

Commit

Permalink
Merge pull request #81 from oscargus/fixes
Browse files Browse the repository at this point in the history
Correct version, drop Python 3.6, update Python setup
  • Loading branch information
tacaswell committed Oct 31, 2022
2 parents e5c42f2 + e6e12d9 commit 7cd7a82
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python 3
uses: actions/setup-python@v1
uses: actions/setup-python@v3
with:
python-version: 3.8
python-version: 3.9

- name: Install flake8
run: pip3 install flake8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion cycler.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from itertools import product, cycle
from operator import mul, add

__version__ = '0.10.0'
__version__ = '0.12.0.dev0'


def _process_keys(left, right):
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@
url='https://github.com/matplotlib/cycler',
platforms='Cross platform (Linux, macOS, Windows)',
license="BSD",
python_requires='>=3.6',
python_requires='>=3.7',
classifiers=['License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down

0 comments on commit 7cd7a82

Please sign in to comment.