Skip to content

Commit

Permalink
Remove 3.6 support and update Python setup version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Mar 1, 2022
1 parent d8e72d9 commit e6e12d9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 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
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 e6e12d9

Please sign in to comment.