Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add official support for python 3.13 #258

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
6 changes: 3 additions & 3 deletions .github/workflows/all-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ 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" ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand All @@ -83,7 +83,7 @@ jobs:
strategy:
matrix:
os: [ 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" ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
3 changes: 2 additions & 1 deletion databricks-iris/{{ cookiecutter.repo_name }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ dependencies = [
"notebook",
"kedro[jupyter]~={{ cookiecutter.kedro_version }}",
"kedro-datasets[spark, pandas, spark.SparkDataset, pandas.ParquetDataset]>=3.0",
"numpy~=1.21"
"numpy~=1.21; python_version <= '3.9'",
"numpy~=2.1"
ravi-kumar-pilla marked this conversation as resolved.
Show resolved Hide resolved
]

[project.scripts]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ jupyterlab>=3.0
notebook
kedro[jupyter]~={{ cookiecutter.kedro_version }}
kedro-datasets[spark, pandas, spark-sparkdataset, pandas-parquetdataset]>=3.0
numpy~=1.21
numpy~=1.21; python_version <= '3.9'
numpy~=2.1
ravi-kumar-pilla marked this conversation as resolved.
Show resolved Hide resolved