Skip to content

Commit 05cb2af

Browse files
committed
Add support for Python 3.10
1 parent 59e7a6f commit 05cb2af

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.7", "3.8", "3.9"]
19+
python-version: ["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.7',
1313
classifiers=['License :: OSI Approved :: BSD License',
@@ -16,6 +16,7 @@
1616
'Programming Language :: Python :: 3.7',
1717
'Programming Language :: Python :: 3.8',
1818
'Programming Language :: Python :: 3.9',
19+
'Programming Language :: Python :: 3.10',
1920
'Programming Language :: Python :: 3 :: Only',
2021
],
2122
keywords='cycle kwargs',

0 commit comments

Comments
 (0)