Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Commit 5910833

Browse files
authored
refactor!: Update python-spanner dep, drop py 3.5 (#557)
1 parent 8b2329a commit 5910833

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def default(session):
8181
)
8282

8383

84-
@nox.session(python=["3.5", "3.6", "3.7", "3.8"])
84+
@nox.session(python=["3.6", "3.7", "3.8"])
8585
def unit(session):
8686
"""Run the unit test suite."""
8787
default(session)

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# 'Development Status :: 4 - Beta'
1818
# 'Development Status :: 5 - Production/Stable'
1919
release_status = "Development Status :: 3 - Alpha"
20-
dependencies = ["sqlparse >= 0.3.0", "google-cloud-spanner >= 1.8.0"]
20+
dependencies = ["sqlparse >= 0.3.0", "google-cloud-spanner >= 2.0.0"]
2121
extras = {}
2222

2323
BASE_DIR = os.path.dirname(__file__)
@@ -53,13 +53,12 @@
5353
"License :: OSI Approved :: BSD License",
5454
"Operating System :: OS Independent",
5555
"Programming Language :: Python :: 3",
56-
"Programming Language :: Python :: 3.5",
5756
"Programming Language :: Python :: 3.6",
5857
"Programming Language :: Python :: 3.7",
5958
"Topic :: Utilities",
6059
"Framework :: Django",
6160
"Framework :: Django :: 2.2",
6261
],
6362
extras_require=extras,
64-
python_requires=">=3.5",
63+
python_requires=">=3.6",
6564
)

0 commit comments

Comments
 (0)