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

force sklearn upgrade #29

Merged
merged 3 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .github/linters/.codespell-ignore-words
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
inpt
3 changes: 3 additions & 0 deletions .github/linters/.codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codespell]
skip = None, .git,build,__pycache__,assets
ignore-words = .github/linters/.codespell-ignore-words
2 changes: 2 additions & 0 deletions .github/linters/formatting.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ format () {
black --line-length 79 --target-version 'py310' --include '\.pyi?$' $1
isort --profile 'black' --multi-line 3 --trailing-comma --force-grid-wrap 0 --line-length 79 --use-parentheses $1
fi;

codespell $1 --config .github/linters/.codespellrc
}


Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ jobs:
source .github/linters/formatting.sh
format pinn_spm_param true
format BayesianCalibration_spm true
codespell
Test:
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ corner
tf2jax
numpyro
black>=24.3.0
scikit-learn
scikit-learn>=1.5.0
Loading