@@ -18,18 +18,16 @@ jobs:
18
18
AWS_SECRET_KEY : ${{ secrets.AWS_SECRET_KEY }}
19
19
steps :
20
20
- uses : actions/checkout@v3
21
- - name : Set up Conda
22
- uses : conda-incubator /setup-miniconda@v2
21
+ - name : Set up Python
22
+ uses : actions /setup-python@v4
23
23
with :
24
- auto-update-conda : true
25
24
python-version : ' 3.10'
26
- activate-environment : snowflake-demo
27
-
28
- - name : Install dependencies with Conda
29
- shell : bash -l {0}
25
+ - name : Install dependencies
30
26
run : |
31
- # Install from environment.yml
32
- conda env update --file environment.yml --prune
27
+ python -m pip install --upgrade pip
28
+
29
+ # Install from requirements.txt
30
+ pip install -r requirements.txt
33
31
34
32
# Just verify Snow CLI version - don't try to use other commands that might not exist
35
33
snow --version || echo "Snow CLI version check failed"
@@ -107,18 +105,19 @@ jobs:
107
105
runs-on : ubuntu-latest
108
106
steps :
109
107
- uses : actions/checkout@v3
110
- - name : Set up Conda
111
- uses : conda-incubator /setup-miniconda@v2
108
+ - name : Set up Python
109
+ uses : actions /setup-python@v4
112
110
with :
113
- auto-update-conda : true
114
111
python-version : ' 3.10'
115
- activate-environment : snowflake-demo
116
-
117
- - name : Install dependencies with Conda
118
- shell : bash -l {0}
112
+ - name : Install dependencies
119
113
run : |
120
- # Install from environment.yml
121
- conda env update --file environment.yml --prune
114
+ python -m pip install --upgrade pip
115
+
116
+ # Install from requirements.txt with force reinstall for key packages
117
+ pip install -r requirements.txt --force-reinstall
118
+
119
+ # Install specific version we know works (avoid 0.2.9)
120
+ pip install snowflake-connector-python==3.13.2 snowflake-snowpark-python==1.25.0
122
121
123
122
# Just verify Snow CLI version - no extension or snowpark commands
124
123
snow --version
0 commit comments