Skip to content

Fix python failing tests #1299

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

Merged
merged 1 commit into from
Nov 5, 2024
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/main_python.yml
Original file line number Diff line number Diff line change
@@ -16,11 +16,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: '3.10'
- name: Install PyTorch
run: |
python -m pip install --upgrade pip
2 changes: 1 addition & 1 deletion dcgan/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
torch
torchvision
torchvision==0.20.0
lmdb
2 changes: 1 addition & 1 deletion gat/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
torch
requests
numpy
numpy<2
4 changes: 2 additions & 2 deletions gcn/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
torch
torchvision
torchvision==0.20.0
requests
numpy
numpy<2
2 changes: 1 addition & 1 deletion imagenet/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch
torchvision
torchvision==0.20.0
2 changes: 1 addition & 1 deletion language_translation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
torch
torchtext
torchdata
torchdata==0.9.0
spacy
portalocker
2 changes: 1 addition & 1 deletion mnist/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch
torchvision
torchvision==0.20.0
2 changes: 1 addition & 1 deletion mnist_forward_forward/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch
torchvision
torchvision==0.20.0
2 changes: 1 addition & 1 deletion mnist_hogwild/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch
torchvision
torchvision==0.20.0
2 changes: 1 addition & 1 deletion mnist_rnn/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch
torchvision
torchvision==0.20.0
2 changes: 1 addition & 1 deletion siamese_network/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch
torchvision
torchvision==0.20.0
2 changes: 1 addition & 1 deletion vae/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
torch
torchvision
torchvision==0.20.0
tqdm
six