Skip to content

Commit ef440c4

Browse files
authored
Merge pull request #29 from zbrookle/make_sql_to_ibis_backend
Make sql to ibis backend
2 parents 77dbaec + 316356f commit ef440c4

18 files changed

+235
-3550
lines changed

ci/code_checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ if [[ -z "$CHECK" || "$CHECK" == "lint" ]]; then
6868

6969
# Imports - Check formatting using isort see setup.cfg for settings
7070
MSG='Check import format using isort' ; echo $MSG
71-
ISORT_CMD="isort --recursive --check-only dataframe_sql"
71+
ISORT_CMD="isort --check-only dataframe_sql"
7272
if [[ "$GITHUB_ACTIONS" == "true" ]]; then
7373
eval $ISORT_CMD | awk '{print "##[error]" $0}'; RET=$(($RET + ${PIPESTATUS[0]}))
7474
else

ci/setup_env.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ conda list
9191
conda remove --all -q -y -n dataframe_sql
9292

9393
echo
94-
echo "conda env create -q --file=${ENV_FILE}"
95-
time conda env create -q --file="${ENV_FILE}"
94+
echo "conda create -n dataframe_sql python=3.7 -y"
95+
time conda create -n dataframe_sql python=3.7 -y
9696

9797

9898
if [[ "$BITS32" == "yes" ]]; then
@@ -102,6 +102,8 @@ fi
102102

103103
echo "activate dataframe_sql"
104104
conda activate dataframe_sql
105+
pip install -r ci/test-requirements.txt
106+
pip install -r requirements.txt
105107

106108
echo
107109
echo "remove qt"

ci/test-requirements.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pandas>=1.0.1
2+
black
3+
flake8
4+
flake8-comprehensions>=3.1.0
5+
isort
6+
mypy
7+
freezegun
8+
pytest

dataframe_sql/_version.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
# This file is released into the public domain. Generated by
88
# versioneer-0.18 (https://github.com/warner/python-versioneer)
99

10-
"""Git implementation of _version.py."""
10+
"""Git implementation of _version.py.
11+
isort:skip_file
12+
"""
1113

1214
import errno
1315
import os

dataframe_sql/exceptions/__init__.py

Whitespace-only changes.

dataframe_sql/exceptions/sql_exception.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

dataframe_sql/grammar/__init__.py

Whitespace-only changes.

dataframe_sql/grammar/sql.grammar

Lines changed: 0 additions & 138 deletions
This file was deleted.

dataframe_sql/parsing/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)