You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,11 @@ cd snowpark-python
34
34
#### Install the library in edit mode and install its dependencies
35
35
36
36
- Create a new Python virtual environment with any Python version that we support.
37
-
- The Snowpark Python API supports **Python 3.9, Python 3.10, Python 3.11, Python 3.12 and Python 3.13**.
38
-
- The Snowpark pandas API supports **Python 3.9, Python 3.10, and Python 3.11**. Additionally, Snowpark pandas requires **Modin 0.36.x or 0.37.x**, and **pandas 2.2.x or 2.3.x**.
37
+
- The Snowpark Python API supports **Python 3.10, Python 3.11, Python 3.12 and Python 3.13**.
38
+
- The Snowpark pandas API supports **Python 3.10 and Python 3.11**. Additionally, Snowpark pandas requires **Modin 0.36.x or 0.37.x**, and **pandas 2.2.x or 2.3.x**.
39
39
40
40
```bash
41
-
conda create --name snowpark-dev python=3.9
41
+
conda create --name snowpark-dev python=3.10
42
42
```
43
43
44
44
- Activate the new Python virtual environment. For example,
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,9 @@ If you don't have a Snowflake account yet, you can [sign up for a 30-day free tr
18
18
19
19
### Create a Python virtual environment
20
20
You can use [miniconda][miniconda], [anaconda][anaconda], or [virtualenv][virtualenv]
21
-
to create a Python 3.9, 3.10, 3.11, 3.12 or 3.13 virtual environment.
21
+
to create a Python 3.10, 3.11, 3.12 or 3.13 virtual environment.
22
22
23
-
For Snowpark pandas, only Python 3.9, 3.10, or 3.11 is supported.
23
+
For Snowpark pandas, only Python 3.10 or 3.11 is supported.
24
24
25
25
To have the best experience when using it with UDFs, [creating a local conda environment with the Snowflake channel][use snowflake channel] is recommended.
Copy file name to clipboardExpand all lines: scripts/conda_build_verification/README.md
+12-22Lines changed: 12 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This directory contains scripts for Docker-based verification of Snowflake Snowp
4
4
5
5
## Overview
6
6
7
-
The verification system automatically tests conda packages (.conda and .tar.bz2 formats) for **all Python versions 3.9-3.13** on both x86_64 and aarch64 architectures by:
7
+
The verification system automatically tests conda packages (.conda and .tar.bz2 formats) for **all Python versions 3.10-3.13** on both x86_64 and aarch64 architectures by:
8
8
9
9
1. Scanning the `package/` directory for conda packages in `linux-64`, `linux-aarch64`, and `noarch` subdirectories
10
10
2. Launching Docker containers using `continuumio/miniconda3` (supports both architectures)
@@ -27,20 +27,17 @@ The verification expects packages to be organized as follows:
This error occurs when the script cannot find packages for a requested architecture directory.
227
217
228
-
**To fix**: Ensure packages are in the correct `package/` subdirectories with proper naming patterns (e.g., `snowflake-snowpark-python-*-py39_*.conda`), or use one of the available architectures listed in the error message.
218
+
**To fix**: Ensure packages are in the correct `package/` subdirectories with proper naming patterns (e.g., `snowflake-snowpark-python-*-py310_*.conda`), or use one of the available architectures listed in the error message.
229
219
230
220
3.**GPG decryption fails**
231
221
```
@@ -294,7 +284,7 @@ docker run -it --rm \
294
284
continuumio/miniconda3:latest \
295
285
bash
296
286
297
-
# Inside container, run the verification script (tests all Python versions 3.9-3.13)
287
+
# Inside container, run the verification script (tests all Python versions 3.10-3.13)
0 commit comments