We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5cb375 commit 7d7251fCopy full SHA for 7d7251f
.github/workflows/main.yml
@@ -38,7 +38,10 @@ jobs:
38
fail-fast: false
39
matrix:
40
os: [ubuntu-latest, windows-latest, macos-latest]
41
- python-version: ["3.8", "3.12"]
+ python-version:
42
+ - "3.8"
43
+ - "3.12"
44
+ - "3.13-dev"
45
include:
46
- os: windows-latest
47
python-version: "3.11"
pyproject.toml
@@ -133,6 +133,8 @@ filterwarnings= [
133
# from python-dateutil
134
"ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning",
135
"ignore:datetime.datetime.utcnow:DeprecationWarning",
136
+ # from ipykernel 6 (fixed in 7)
137
+ "ignore:Parsing dates:DeprecationWarning:ipykernel.jsonutil",
138
]
139
140
[tool.coverage.report]
0 commit comments