Skip to content

Commit f09469c

Browse files
committed
Add support for Python 3.10
1 parent 2a88314 commit f09469c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

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

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

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
py_modules=['cycler'],
88
description='Composable style cycles',
99
url='https://github.com/matplotlib/cycler',
10-
platforms='Cross platform (Linux, Mac OSX, Windows)',
10+
platforms='Cross platform (Linux, macOS, Windows)',
1111
license="BSD",
1212
python_requires='>=3.6',
1313
classifiers=['License :: OSI Approved :: BSD License',
@@ -17,6 +17,7 @@
1717
'Programming Language :: Python :: 3.7',
1818
'Programming Language :: Python :: 3.8',
1919
'Programming Language :: Python :: 3.9',
20+
'Programming Language :: Python :: 3.10',
2021
'Programming Language :: Python :: 3 :: Only',
2122
],
2223
keywords='cycle kwargs',

0 commit comments

Comments
 (0)