Skip to content

Commit

Permalink
Merge pull request #264 from nzw0301/terminator-312
Browse files Browse the repository at this point in the history
Add python 3.12 and run terminator search cv
  • Loading branch information
nabenabe0928 authored Jun 12, 2024
2 parents dd56b96 + e57020d commit 7450fbd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/sklearn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
pip install -r sklearn/requirements.txt
- name: Run examples
run: |
python sklearn/sklearn_simple.py
python sklearn/sklearn_additional_args.py
python sklearn/sklearn_optuna_search_cv_simple.py
python sklearn/sklearn_simple.py
env:
OMP_NUM_THREADS: 1
7 changes: 5 additions & 2 deletions .github/workflows/terminator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand All @@ -28,11 +28,14 @@ jobs:
pip install --progress-bar off -U setuptools
pip install git+https://github.com/optuna/optuna.git
python -c 'import optuna'
pip install git+https://github.com/optuna/optuna-integration.git
python -c 'import optuna_integration'
pip install -r terminator/requirements.txt
- name: Run examples
run: |
python terminator/terminator_simple.py
python terminator/terminator_improvement_plot.py
python terminator/terminator_search_cv.py
python terminator/terminator_simple.py
env:
OMP_NUM_THREADS: 1
3 changes: 2 additions & 1 deletion sklearn/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
scikit-learn>=0.19.0
optuna
scikit-learn>=0.19.0
pandas # used in sklearn_optuna_search_cv_simple.py
3 changes: 2 additions & 1 deletion terminator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
botorch
scikit-learn
pandas # used in terminator_search_cv.py
plotly
scikit-learn

0 comments on commit 7450fbd

Please sign in to comment.