Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v3.5.5 (2024-04-17)
## v3.5.7 (2024-04-17)

### Updates

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,4 @@ To publish the package to PyPI, run the following command:

::

twine upload --config-file .pypirc dist/pystackql-3.5.5.tar.gz
twine upload --config-file .pypirc dist/pystackql-3.5.7.tar.gz
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '3.5.5'
release = '3.5.7'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pystackql/stackql.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ def execute(self, query, suppress_errors=True):
try:
return json.loads(output["data"])
except ValueError:
return {"error": "Invalid JSON output"}
return {"error": f"Invalid JSON output : {output['data']}"}
else:
if "error" in output:
if suppress_errors:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='pystackql',
version='3.5.5',
version='3.5.7',
description='A Python interface for StackQL',
long_description=readme,
author='Jeffrey Aven',
Expand Down