We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdef556 commit 5a634a5Copy full SHA for 5a634a5
.github/workflows/build_and_publish.yml
@@ -61,7 +61,11 @@ jobs:
61
run: |
62
python3 -m venv venv
63
source venv/bin/activate
64
- pip install -r requirements.txt
+ 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
69
pip install pyinstaller
70
pyinstaller --clean --noconfirm --log-level=WARN --distpath=dist --workpath=build cloud2sql.spec
71
if [ "${{ github.ref_type }}" = tag ]; then
requirements-snowflake.txt
@@ -1 +1 @@
1
-snowflake-sqlalchemy>=1.4.5
+snowflake-sqlalchemy>=1.4.4
0 commit comments