Skip to content

Commit

Permalink
update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
cccvs committed Apr 7, 2024
1 parent ca13fe1 commit d67a6d7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -e .
python -m pip install networkx
python -c "import networkx"
python -m pip install .
cat tools/requirements_dev.txt | grep pytest | xargs pip install
- name: Unit Test
run: |
Expand All @@ -94,8 +96,11 @@ jobs:
run: brew install coreutils # for timeout command
- name: Install BlueFogLite
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install -e .
python3 -m pip install networkx
python3 -c "import networkx"
python3 -m pip install .
cat tools/requirements_dev.txt | grep pytest | xargs pip install
- name: Unit Test
run: |
Expand Down
10 changes: 6 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
networkx < 3.0
numpy
protobuf
torch
torch==2.1.0
torchvision==0.16.0
torchaudio==2.1.0
networkx==2.8.8
numpy==1.24.1
protobuf==3.19.4

0 comments on commit d67a6d7

Please sign in to comment.