diff --git a/README.md b/README.md index f601c077..e47d5aa7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# THIS IS A FORK +This exists for the sole reason to be able to redefine a dependency to use a different repo's fork with a bug fix in it. Waiting on corporate to sign a CLA so that a PR may be made. Once that has been accepted, this fork will be deleted and so will the other with the fix. + # Spanner dialect for SQLAlchemy Spanner dialect for SQLAlchemy represents an interface API designed to make it possible to control Cloud Spanner databases with SQLAlchemy API. The dialect is built on top of [the Spanner DB API](https://github.com/googleapis/python-spanner/tree/master/google/cloud/spanner_dbapi), which is designed in accordance with [PEP-249](https://www.python.org/dev/peps/pep-0249/). diff --git a/google/cloud/sqlalchemy_spanner/provision.py b/google/cloud/sqlalchemy_spanner/provision.py index 91ff8e92..a7371942 100644 --- a/google/cloud/sqlalchemy_spanner/provision.py +++ b/google/cloud/sqlalchemy_spanner/provision.py @@ -11,6 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +# This is a test from sqlalchemy.testing.provision import temp_table_keyword_args diff --git a/setup.py b/setup.py index 3852af3d..1d78aa67 100644 --- a/setup.py +++ b/setup.py @@ -17,9 +17,9 @@ # Package metadata. -name = "sqlalchemy-spanner" +name = "sqlalchemy-spanner-tmp" description = "SQLAlchemy dialect integrated into Cloud Spanner database" -dependencies = ["sqlalchemy>=1.1.13, <=1.3.23", "google-cloud-spanner>=3.3.0"] +dependencies = ["sqlalchemy>=1.1.13, <=1.3.23", "google-cloud-spanner-tmp>=3.3.0"] extras = { "tracing": [ "opentelemetry-api >= 1.1.0", @@ -45,6 +45,9 @@ author="Google LLC", author_email="cloud-spanner-developers@googlegroups.com", classifiers=["Intended Audience :: Developers"], + dependency_links=[ + "https://github.com/jpburbank/python-spanner-tmp", + ], description=description, entry_points={ "sqlalchemy.dialects": [ @@ -57,7 +60,7 @@ namespace_packages=namespaces, packages=packages, url="https://github.com/cloudspannerecosystem/python-spanner-sqlalchemy", - version="0.1", + version="0.1.1", include_package_data=True, zip_safe=False, )