Skip to content

Commit

Permalink
Merge pull request #267 from y0z/feature/fix-ci
Browse files Browse the repository at this point in the history
Fix CI with version constraints of packages
  • Loading branch information
not522 authored Jun 25, 2024
2 parents 7450fbd + 8f792ae commit 8686763
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chainer.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.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multi_objective.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', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions allennlp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
allennlp>=2.2.0
numpy<2.0.0 # TODO(nabe): Remove this constraint once this issue is resolved. https://github.com/numpy/numpy/issues/26710
# This constraint is necessary to use the old Pydantic.
# See https://github.com/pydantic/pydantic/issues/5821.
typing_extensions<4.6.0
Expand Down
1 change: 1 addition & 0 deletions chainer/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
chainer
mpi4py
numpy<2.0.0 # TODO(nabe): Remove this constraint once this issue is resolved. https://github.com/numpy/numpy/issues/26710
optuna
1 change: 1 addition & 0 deletions keras/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
keras
numpy<2.0.0 # TODO(nabe): Remove this constraint once this issue is resolved. https://github.com/numpy/numpy/issues/26710
optuna
tensorflow-cpu
tensorflow-datasets
2 changes: 1 addition & 1 deletion multi_objective/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
botorch>=0.4.0
botorch>=0.8.0
fvcore
torch
torchaudio
Expand Down

0 comments on commit 8686763

Please sign in to comment.