This is an automated email from the ASF dual-hosted git repository. brandonwilliams pushed a commit to branch cassandra-4.0 in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/cassandra-4.0 by this push: new bccb5ad Remove path for unused geomet package in cqlsh bccb5ad is described below commit bccb5adf9518624147ee092971eb788e83d497f1 Author: Brad Schoening <5796692+bschoen...@users.noreply.github.com> AuthorDate: Tue Jan 18 18:46:36 2022 -0500 Remove path for unused geomet package in cqlsh Patch by Brad Schoening; reviewed by brandonwilliams and bereng for CASSANDRA-17271 Remove path for unused `geomet` package, which does not appear to be used in CQLSH. It is an optional dependency of the cassandra-driver in a test case. --- CHANGES.txt | 1 + bin/cqlsh.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index c176a47..1bde0c9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ 4.0.2 + * Remove unused 'geomet' package from cqlsh path (CASSANDRA-17271) * Removed unused 'cql' dependency (CASSANDRA-17247) * Don't block gossip when clearing repair snapshots (CASSANDRA-17168) * Deduplicate warnings for deprecated parameters (changed names) (CASSANDRA-17160) diff --git a/bin/cqlsh.py b/bin/cqlsh.py index 37f839d..df08203 100755 --- a/bin/cqlsh.py +++ b/bin/cqlsh.py @@ -116,7 +116,7 @@ if cql_zip: ver = os.path.splitext(os.path.basename(cql_zip))[0][len(CQL_LIB_PREFIX):] sys.path.insert(0, os.path.join(cql_zip, 'cassandra-driver-' + ver)) -third_parties = ('futures-', 'six-', 'geomet-') +third_parties = ('futures-', 'six-') for lib in third_parties: lib_zip = find_zip(lib) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org For additional commands, e-mail: commits-h...@cassandra.apache.org