Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest-64-cores, ubuntu-latest-64-cores]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
cloud-provider: [aws, gcp, azure]
exclude:
# only run macos with aws py3.9 for doctest
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12" ]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
cloud-provider: [aws]
exclude:
# only run each version on one os
Expand Down Expand Up @@ -528,7 +528,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest-64-cores, ubuntu-latest-64-cores]
python-version: [ "3.9", "3.10", "3.11" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
cloud-provider: [aws, gcp, azure]
exclude:
# only run macos with aws py3.9 for doctest
Expand Down
7 changes: 5 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ build:
string: "py310_0" # [py==310]
string: "py311_0" # [py==311]
string: "py312_0" # [py==312]
string: "py313_0" # [py==313]
{% endif %}

{% if noarch_build and py not in [39, 310, 311, 312] %}
error: "Noarch build for Python version {{ py }} is not supported. Supported versions: 3.9, 3.10, 3.11, or 3.12."
{% if noarch_build and py not in [39, 310, 311, 312, 313] %}
error: "Noarch build for Python version {{ py }} is not supported. Supported versions: 3.9, 3.10, 3.11, 3.12 or 3.13"
{% else %}
requirements:
host:
Expand All @@ -46,6 +47,8 @@ requirements:
- python >=3.11,<3.12.0a0
{% elif noarch_build and py == 312 %}
- python >=3.12,<3.13.0a0
{% elif noarch_build and py == 313 %}
- python >=3.13,<3.14.0a0
{% else %}
- python
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"python-dateutil", # Snowpark IR
"tzlocal", # Snowpark IR
]
REQUIRED_PYTHON_VERSION = ">=3.9, <3.13"
REQUIRED_PYTHON_VERSION = ">=3.9, <3.14"

if os.getenv("SNOWFLAKE_IS_PYTHON_RUNTIME_TEST", False):
REQUIRED_PYTHON_VERSION = ">=3.9"
Expand Down
Loading