Skip to content

Commit b88f64b

Browse files
committed
chore: bump pytorch_connectomics to latest upstream commit
1 parent 3721817 commit b88f64b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

pytorch_connectomics

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 20ccfde6f85868351b00d7b795d4cf89a251d6be
1+
Subproject commit 0a0dceb8bc03e0afbb843aef17181c9f854209da

scripts/bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ if (Test-Path (Join-Path $pytcDir '.git')) {
2020
Push-Location $pytcDir
2121
git fetch origin *> $null
2222
$currentCommit = (git rev-parse HEAD) -replace '\s', ''
23-
$targetCommit = '20ccfde'
23+
$targetCommit = '0a0dceb'
2424
if ($currentCommit -ne $targetCommit) {
2525
git checkout $targetCommit
2626
}
2727
Pop-Location
2828
} else {
29-
git clone 'https://github.com/zudi-lin/pytorch_connectomics.git' $pytcDir
29+
git clone 'https://github.com/PytorchConnectomics/pytorch_connectomics.git' $pytcDir
3030
Push-Location $pytcDir
31-
git checkout '20ccfde'
31+
git checkout '0a0dceb'
3232
Pop-Location
3333
}
3434

scripts/setup_pytorch_connectomics.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ if ! command -v git >/dev/null 2>&1; then
77
exit 1
88
fi
99

10-
PYTORCH_CONNECTOMICS_COMMIT="20ccfde"
11-
REPO_URL="https://github.com/zudi-lin/pytorch_connectomics.git"
10+
PYTORCH_CONNECTOMICS_COMMIT="0a0dceb"
11+
REPO_URL="https://github.com/PytorchConnectomics/pytorch_connectomics.git"
1212
PYTORCH_CONNECTOMICS_DIR="pytorch_connectomics"
1313

1414
if [ -d "${PYTORCH_CONNECTOMICS_DIR}/.git" ]; then

0 commit comments

Comments
 (0)