Skip to content

Commit 7d7251f

Browse files
andifeminrk
andauthored
test on python 3.13-dev (#1036)
* ignore deprecationwarning in ipykernel --------- Co-authored-by: Min RK <[email protected]>
1 parent b5cb375 commit 7d7251f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
os: [ubuntu-latest, windows-latest, macos-latest]
41-
python-version: ["3.8", "3.12"]
41+
python-version:
42+
- "3.8"
43+
- "3.12"
44+
- "3.13-dev"
4245
include:
4346
- os: windows-latest
4447
python-version: "3.11"

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ filterwarnings= [
133133
# from python-dateutil
134134
"ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning",
135135
"ignore:datetime.datetime.utcnow:DeprecationWarning",
136+
# from ipykernel 6 (fixed in 7)
137+
"ignore:Parsing dates:DeprecationWarning:ipykernel.jsonutil",
136138
]
137139

138140
[tool.coverage.report]

0 commit comments

Comments
 (0)