Skip to content

Commit 2be4157

Browse files
authored
chore: add trove classifier to setup.py for 3.8, 3.9 (#241)
1 parent 83895bc commit 2be4157

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/google-cloud-firestore/noxfile.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@
2727
BLACK_VERSION = "black==19.10b0"
2828
BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
2929

30-
DEFAULT_PYTHON_VERSION = "3.8"
31-
SYSTEM_TEST_PYTHON_VERSIONS = ["3.7"]
32-
UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8"]
33-
30+
DEFAULT_PYTHON_VERSION = "3.9"
31+
SYSTEM_TEST_PYTHON_VERSIONS = ["3.9"]
32+
UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9"]
3433

3534
@nox.session(python=DEFAULT_PYTHON_VERSION)
3635
def lint(session):
@@ -99,7 +98,6 @@ def default(session):
9998
*session.posargs,
10099
)
101100

102-
103101
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
104102
def unit(session):
105103
"""Run the unit test suite."""

packages/google-cloud-firestore/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
"Programming Language :: Python :: 3",
7070
"Programming Language :: Python :: 3.6",
7171
"Programming Language :: Python :: 3.7",
72+
"Programming Language :: Python :: 3.8",
73+
"Programming Language :: Python :: 3.9",
7274
"Operating System :: OS Independent",
7375
"Topic :: Internet",
7476
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)