Skip to content

Commit 9981371

Browse files
authored
Explicit Python 3.10 support (#841)
1 parent aee47f5 commit 9981371

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
max-parallel: 6
5353
matrix:
54-
python-version: [3.6, 3.7, 3.8, 3.9]
54+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
5555
services:
5656
hub:
5757
image: selenium/hub:3.141.59-gold
@@ -65,7 +65,7 @@ jobs:
6565
- name: Set up Python 3.8
6666
uses: actions/setup-python@v1
6767
with:
68-
python-version: 3.8
68+
python-version: '3.8'
6969
- name: Set up Python ${{ matrix.python-version }}
7070
if: matrix.python-version != '3.8'
7171
uses: actions/setup-python@v1

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def format_(session):
2626
session.run("isort", *SOURCES)
2727

2828

29-
@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
29+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
3030
def test(session):
3131
session.install("pytest")
3232
session.install("dash[testing]>=2.0.0")

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_version():
12-
""" Get version by parsing _version programmatically """
12+
"""Get version by parsing _version programmatically"""
1313
version_ns = {}
1414
with open(
1515
os.path.join(HERE, "dash_bootstrap_components", "_version.py")
@@ -48,6 +48,7 @@ def _get_long_description():
4848
"Programming Language :: Python :: 3.7",
4949
"Programming Language :: Python :: 3.8",
5050
"Programming Language :: Python :: 3.9",
51+
"Programming Language :: Python :: 3.10",
5152
],
5253
extras_require={"pandas": ["numpy", "pandas"]},
5354
python_requires=">=3.6, <4",

0 commit comments

Comments
 (0)