Skip to content

Commit 93614c9

Browse files
committed
BUG: Fix setup requirements
1 parent 6ef7693 commit 93614c9

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pandas>=1.0.1
2+
black==19.10b0
3+
flake8
4+
flake8-comprehensions>=3.1.0
5+
isort
6+
mypy==0.761
7+
freezegun
8+
pytest>=5.0.1
9+
pytest-cov
10+
pytest-xdist>=1.21
11+
pytest-asyncio

requirements.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
ibis-framework
2-
lark-parser
3-
sql-to-ibis
1+
lark-parser=0.8.1
2+
sql-to-ibis

0 commit comments

Comments
 (0)