summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarel Ben-Attia <harel@coralogix.com>2021-10-04 23:15:50 +0300
committerHarel Ben-Attia <harel@coralogix.com>2021-10-04 23:15:50 +0300
commit8e0f255fa35bc2838427d340029f84a72db4e935 (patch)
treeaadd45d3f6433c279442a58102045e5614042e01
parent373841af1260d773297df98162db6184f085f8f0 (diff)
-rwxr-xr-xbin/q.py2
-rwxr-xr-xdo-manual-release.sh2
-rw-r--r--requirements.txt1
-rw-r--r--setup.py5
4 files changed, 6 insertions, 4 deletions
diff --git a/bin/q.py b/bin/q.py
index 59ecc88..3f1895e 100755
--- a/bin/q.py
+++ b/bin/q.py
@@ -33,7 +33,7 @@ from __future__ import print_function
from collections import OrderedDict
-q_version = '2.0.19'
+q_version = '2.0.20'
__all__ = [ 'QTextAsData' ]
diff --git a/do-manual-release.sh b/do-manual-release.sh
index 4dd49ef..1b6ddde 100755
--- a/do-manual-release.sh
+++ b/do-manual-release.sh
@@ -2,7 +2,7 @@
set -e
-VERSION=2.0.19
+VERSION=2.0.20
echo "TRAVIS_BRANCH is $TRAVIS_BRANCH . TRAVIS_PULL_REQUEST_BRANCH is $TRAVIS_PULL_REQUEST_BRANCH"
diff --git a/requirements.txt b/requirements.txt
index 3ad7d2b..686087a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,3 +1,4 @@
six==1.11.0
flake8==3.6.0
setuptools<45.0.0
+sqlitebck==1.4
diff --git a/setup.py b/setup.py
index f949d1a..7d719a2 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
from setuptools import setup
-q_version = '2.0.19'
+q_version = '2.0.20'
setup(
name='q',
@@ -13,7 +13,8 @@ setup(
description="Run SQL directly on CSV or TSV files",
author_email='harelba@gmail.com',
install_requires=[
- 'six==1.11.0'
+ 'six==1.11.0',
+ 'sqlitebck==1.4'
],
packages=[
'bin'