Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
14cefcd
chore: Add support for Python 3.13
arwas11 Jan 21, 2025
e8e4811
Merge branch 'main' into update-to-python-3-13
arwas11 Jan 21, 2025
9f65105
Merge remote-tracking branch 'origin/main' into update-to-python-3-13
arwas11 Jan 22, 2025
c998c11
update contibuting.rst with the the new version
arwas11 Jan 22, 2025
0a46d4a
skip sklearn import
arwas11 Jan 22, 2025
8414fad
Merge branch 'main' into update-to-python-3-13
arwas11 Jan 23, 2025
d75a1b3
Merge remote-tracking branch 'origin/main' into update-to-python-3-13
arwas11 Jan 23, 2025
db78d65
Merge remote-tracking branch 'origin/update-to-python-3-13' into upda…
arwas11 Jan 23, 2025
4c9e4a6
skip api coverage tests because of sklearn NameError
arwas11 Jan 24, 2025
1bd284d
Merge remote-tracking branch 'origin/main' into update-to-python-3-13
arwas11 Jan 24, 2025
678b676
skip remote function tests
arwas11 Jan 24, 2025
25bc738
skip all remote function tests and doctests
arwas11 Jan 24, 2025
106af9a
update doctest python version to 3.12 in noxfile
arwas11 Jan 28, 2025
cf91455
Merge branch 'main' into update-to-python-3-13
arwas11 Jan 28, 2025
57f7227
Update noxfile.py
tswast Jan 28, 2025
213eaeb
Merge branch 'main' into update-to-python-3-13
tswast Jan 28, 2025
875f59a
Merge branch 'main' into update-to-python-3-13
arwas11 Jan 28, 2025
3fca9ab
Merge branch 'main' into update-to-python-3-13
arwas11 Jan 28, 2025
366e4f8
fix the system_pre-release error
arwas11 Jan 28, 2025
a389687
Merge remote-tracking branch 'origin/update-to-python-3-13' into upda…
arwas11 Jan 28, 2025
102f2cb
Merge branch 'main' into update-to-python-3-13
arwas11 Jan 28, 2025
ad9110b
Merge branch 'main' into update-to-python-3-13
arwas11 Jan 28, 2025
d3279d6
Merge remote-tracking branch 'origin/main' into update-to-python-3-13
tswast Jan 29, 2025
66f584d
skip remote functions notebooks on 3.13 tests
tswast Jan 29, 2025
770fef2
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jan 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
skip sklearn import
  • Loading branch information
arwas11 committed Jan 22, 2025
commit 0a46d4a4ef78bef40c6a1eb597e001bfda4b9707
2 changes: 2 additions & 0 deletions scripts/test_publish_api_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def api_coverage_df():


def test_api_coverage_produces_expected_schema(api_coverage_df):
pytest.importorskip("sklearn")
if sys.version.split(".")[:2] == ["3", "9"]:
pytest.skip(
"Python 3.9 uses older pandas without good microsecond timestamp support."
Expand Down Expand Up @@ -55,5 +56,6 @@ def test_api_coverage_produces_expected_schema(api_coverage_df):


def test_api_coverage_produces_missing_parameters(api_coverage_df):
pytest.importorskip("sklearn")
"""Make sure at least some functions have reported missing parameters."""
assert (api_coverage_df["missing_parameters"].str.len() > 0).any()