Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DIAGNOSTIC [MNT] test all estimators #112

Draft
wants to merge 38 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
3e0d340
test all estimators
fkiraly Oct 7, 2023
2c6a3fc
Merge branch 'main' into diag-test-all-est
fkiraly Oct 7, 2023
a56aaf8
Merge branch 'main' into diag-test-all-est
fkiraly Dec 28, 2023
79c7921
Merge branch 'main' into diag-test-all-est
fkiraly Dec 28, 2023
e034a4e
Merge branch 'main' into diag-test-all-est
fkiraly Jan 3, 2024
0056d46
Update pyproject.toml
fkiraly Jan 3, 2024
2d5bc3e
Merge branch 'skbase-070' into diag-test-all-est
fkiraly Jan 3, 2024
d8f1bc6
Merge branch 'main' into diag-test-all-est
fkiraly Jan 3, 2024
72cd40a
Merge branch 'main' into diag-test-all-est
fkiraly Jan 7, 2024
057f147
Update _base.py
fkiraly Jan 13, 2024
5743fc2
Merge branch 'main' into diag-test-all-est
fkiraly Jan 20, 2024
5c02b6b
Update pyproject.toml
fkiraly Jan 20, 2024
53e9fd3
Update _base.py
fkiraly Jan 21, 2024
9054f6f
Merge branch 'feature-names' into diag-test-all-est
fkiraly Jan 21, 2024
2310572
Update _base.py
fkiraly Jan 21, 2024
77a1a3c
[MNT] [Dependabot](deps-dev): Update pandas requirement
dependabot[bot] Jan 22, 2024
197b5c6
Merge branch 'main' into diag-test-all-est
fkiraly Jan 23, 2024
b10f5f1
Merge branch 'dependabot/pip/pandas-gte-1.1.0-and-lt-2.3.0' into diag…
fkiraly Jan 30, 2024
fc55783
Merge branch 'main' into diag-test-all-est
fkiraly May 16, 2024
2ec2df7
Merge branch 'main' into diag-test-all-est
fkiraly May 17, 2024
efcda17
Merge branch 'main' into diag-test-all-est
fkiraly Jun 23, 2024
b704ed7
Merge branch 'main' into diag-test-all-est
fkiraly Jun 27, 2024
e9de40e
Merge branch 'main' into diag-test-all-est
fkiraly Jul 27, 2024
21b472a
py313
fkiraly Sep 29, 2024
211894f
Update test.yml
fkiraly Sep 29, 2024
a330681
Merge branch 'main' into py313
fkiraly Sep 29, 2024
00ae5ab
Update test.yml
fkiraly Oct 3, 2024
a426462
typo
fkiraly Oct 4, 2024
814861f
3.13 full in CI
fkiraly Oct 8, 2024
6e98b0c
Merge branch 'main' into py313
fkiraly Oct 8, 2024
69b2e90
deps
fkiraly Oct 9, 2024
a66faa9
scattershot
fkiraly Oct 9, 2024
5b14582
macos-latest
fkiraly Oct 9, 2024
162c03d
Merge branch 'py313' into macos-latest
fkiraly Oct 9, 2024
0a77f5b
Update test.yml
fkiraly Oct 9, 2024
4566b69
Merge branch 'main' into diag-test-all-est
fkiraly Oct 9, 2024
ab32e88
Merge branch 'macos-latest' into diag-test-all-est
fkiraly Oct 9, 2024
0c5ceee
Merge branch 'main' into diag-test-all-est
fkiraly Oct 9, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest, macOS-13]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest, macOS-13]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false # to not fail all combinations if just one fail
matrix:
os: [ubuntu-latest, macOS-13]
os: [ubuntu-latest, macOS-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ addopts =
--cov-report xml
--cov-report html
--showlocals
--only_changed_modules True
-n auto
filterwarnings =
ignore::UserWarning
Expand Down
Loading