-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I was considering waiting for a non-beta release; however this adds two nice benefits: 1. Support for Python 3 2. It should still work against cassandra 3.x clusters. Versus newer releases likely will require setting the `--cqlversion` flag due to CASSANDRA-16508.
- Loading branch information
1 parent
56f78f4
commit 30e55a9
Showing
2 changed files
with
16 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = cqlsh | ||
version = 5.0.5 | ||
version = 6.0.0b4 | ||
author = Jeff Widman | ||
author_email = [email protected] | ||
description = cqlsh is a Python-based command-line client for running CQL commands on a cassandra cluster. | ||
|
@@ -19,9 +19,16 @@ classifiers = | |
Programming Language :: Python | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
|
||
[options] | ||
packages = cqlshlib | ||
python_requires = ~= 2.7 | ||
python_requires = >= 2.7 | ||
# Dependencies are in setup.py for GitHub's dependency graph. | ||
scripts = cqlsh |