Skip to content

Commit

Permalink
refactor! Update python-spanner dep, drop py 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
c24t committed Nov 24, 2020
1 parent af5d8e3 commit 1d55d09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -81,7 +81,7 @@ def default(session):
)


@nox.session(python=["3.5", "3.6", "3.7", "3.8"])
@nox.session(python=["3.6", "3.7", "3.8"])
def unit(session):
"""Run the unit test suite."""
default(session)
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -17,7 +17,7 @@
# 'Development Status :: 4 - Beta'
# 'Development Status :: 5 - Production/Stable'
release_status = "Development Status :: 3 - Alpha"
dependencies = ["sqlparse >= 0.3.0", "google-cloud-spanner >= 1.8.0"]
dependencies = ["sqlparse >= 0.3.0", "google-cloud-spanner >= 2.0.0"]
extras = {}

BASE_DIR = os.path.dirname(__file__)
Expand Down Expand Up @@ -53,13 +53,12 @@
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
"Framework :: Django",
"Framework :: Django :: 2.2",
],
extras_require=extras,
python_requires=">=3.5",
python_requires=">=3.6",
)

0 comments on commit 1d55d09

Please sign in to comment.