Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cassandra 5.0.0 #40

Merged
merged 11 commits into from
Sep 16, 2024
Next Next commit
Changes to support Cassandra 5.0
  • Loading branch information
bschoening committed Jul 19, 2024
commit 8ee4351d5800f09b5e7a1d6327115d33f5e5c6cb
4 changes: 2 additions & 2 deletions cqlsh/__main__.py → cqlshlib/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import sys
from cqlsh.cqlsh import main as cqlsh_main
from cqlsh.cqlsh import read_options
from .cqlshmain import main as cqlsh_main
from .cqlshmain import read_options

def main():
cqlsh_main(*read_options(sys.argv[1:], os.environ))
Expand Down
11 changes: 5 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = cqlsh
version = 6.1.3
version = 6.2.0
author = Jeff Widman
author_email = jeff@jeffwidman.com
description = cqlsh is a Python-based command-line client for running CQL commands on a cassandra cluster.
Expand All @@ -18,19 +18,18 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
packages = cqlsh, cqlshlib
python_requires = >=3.6
packages = cqlshlib
python_requires = >=3.8

# Dependencies are in setup.py for GitHub's dependency graph.

[options.entry_points]
console_scripts =
cqlsh = cqlsh.__main__:main
cqlsh = cqlshlib.__main__:main
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@
name="cqlsh",
install_requires=[
"cassandra-driver",
"pure-sasl",
"wcwidth",
],
)