-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* deps: update all deps * chore: update tests * chore: run code formatter * chore: ignore warning * chore: make script work on Python 3.8 * chore: install setuptools * deps: update pip before running nox * deps: upgrade setuptools * build: remove kokoro presubmit workflows * build: add migration 1310 test runner * build: only run units + 1.4 compliance * build: try this config * build: only run unit tests on Kokoro
- Loading branch information
Showing
11 changed files
with
588 additions
and
554 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
# Only run this nox session. | ||
env_vars: { | ||
key: "NOX_SESSION" | ||
value: "compliance_test_20" | ||
value: "unit" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,8 @@ | |
|
||
import io | ||
import os | ||
import warnings | ||
|
||
import setuptools | ||
|
||
|
||
|
@@ -59,24 +61,26 @@ | |
if "google.cloud" in packages: | ||
namespaces.append("google.cloud") | ||
|
||
setuptools.setup( | ||
author="Google LLC", | ||
author_email="[email protected]", | ||
classifiers=["Intended Audience :: Developers"], | ||
description=description, | ||
long_description=readme, | ||
entry_points={ | ||
"sqlalchemy.dialects": [ | ||
"spanner.spanner = google.cloud.sqlalchemy_spanner:SpannerDialect" | ||
] | ||
}, | ||
install_requires=dependencies, | ||
extras_require=extras, | ||
name=name, | ||
namespace_packages=namespaces, | ||
packages=packages, | ||
url="https://github.com/cloudspannerecosystem/python-spanner-sqlalchemy", | ||
version=version, | ||
include_package_data=True, | ||
zip_safe=False, | ||
) | ||
with warnings.catch_warnings(): | ||
warnings.simplefilter("ignore") | ||
setuptools.setup( | ||
author="Google LLC", | ||
author_email="[email protected]", | ||
classifiers=["Intended Audience :: Developers"], | ||
description=description, | ||
long_description=readme, | ||
entry_points={ | ||
"sqlalchemy.dialects": [ | ||
"spanner.spanner = google.cloud.sqlalchemy_spanner:SpannerDialect" | ||
] | ||
}, | ||
install_requires=dependencies, | ||
extras_require=extras, | ||
name=name, | ||
namespace_packages=namespaces, | ||
packages=packages, | ||
url="https://github.com/cloudspannerecosystem/python-spanner-sqlalchemy", | ||
version=version, | ||
include_package_data=True, | ||
zip_safe=False, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters