Skip to content

Commit

Permalink
test on python 3.13-dev (#1036)
Browse files Browse the repository at this point in the history
* ignore deprecationwarning in ipykernel

---------

Co-authored-by: Min RK <benjaminrk@gmail.com>
  • Loading branch information
andife and minrk authored Sep 17, 2024
1 parent b5cb375 commit 7d7251f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ 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-dev"
include:
- os: windows-latest
python-version: "3.11"
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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:Parsing dates:DeprecationWarning:ipykernel.jsonutil",
]

[tool.coverage.report]
Expand Down

0 comments on commit 7d7251f

Please sign in to comment.