From e071a0d276b80a587d01af9990763ddc2a0af819 Mon Sep 17 00:00:00 2001 From: Andreas Fehlner Date: Tue, 17 Sep 2024 09:35:45 +0200 Subject: [PATCH 1/4] WIP: test for python 3.13, Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9fe57ae8..80b4ed4d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.12"] + python-version: ["3.8", "3.12","3.13.0-rc.2"] include: - os: windows-latest python-version: "3.11" From cf37b555e4521453839b7d91d7c904707a55f8e7 Mon Sep 17 00:00:00 2001 From: Andreas Fehlner Date: Tue, 17 Sep 2024 10:41:20 +0200 Subject: [PATCH 2/4] Update .github/workflows/main.yml Co-authored-by: Min RK --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 80b4ed4d..3bce0288 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,10 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.12","3.13.0-rc.2"] + python-version: + - "3.8" + - "3.12" + - "3.13-dev" include: - os: windows-latest python-version: "3.11" From 0d321ab5270886fee1d8f2e1bc4122c9bdb09708 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 17 Sep 2024 11:19:56 +0200 Subject: [PATCH 3/4] ignore deprecationwarning in ipykernel --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8a0ea4f4..a24c799e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -133,6 +133,8 @@ filterwarnings= [ # from python-dateutil "ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning", "ignore:datetime.datetime.utcnow:DeprecationWarning", + # from ipykernel 6 (fixed in 7) + "ignore:ipykernel.jsonutil:DeprecationWarning", ] [tool.coverage.report] From 1154d8c042aad73ac77b746300eeef58f6b1c25c Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 17 Sep 2024 12:11:08 +0200 Subject: [PATCH 4/4] ignore deprecationwarning in ipykernel --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a24c799e..3701c4f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -134,7 +134,7 @@ filterwarnings= [ "ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning", "ignore:datetime.datetime.utcnow:DeprecationWarning", # from ipykernel 6 (fixed in 7) - "ignore:ipykernel.jsonutil:DeprecationWarning", + "ignore:Parsing dates:DeprecationWarning:ipykernel.jsonutil", ] [tool.coverage.report]