Skip to content

Commit 5a634a5

Browse files
authored
Install dependencies (#19)
* Install dependencies * reformat * 1.4.5 is no longer available on PyPI
1 parent cdef556 commit 5a634a5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build_and_publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ jobs:
6161
run: |
6262
python3 -m venv venv
6363
source venv/bin/activate
64-
pip install -r requirements.txt
64+
pip install -r requirements.txt \
65+
-r requirements-mysql.txt \
66+
-r requirements-postgresql.txt \
67+
-r requirements-parquet.txt \
68+
-r requirements-snowflake.txt
6569
pip install pyinstaller
6670
pyinstaller --clean --noconfirm --log-level=WARN --distpath=dist --workpath=build cloud2sql.spec
6771
if [ "${{ github.ref_type }}" = tag ]; then

requirements-snowflake.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
snowflake-sqlalchemy>=1.4.5
1+
snowflake-sqlalchemy>=1.4.4

0 commit comments

Comments
 (0)