Skip to content

Commit 9653161

Browse files
seemetherefacebook-github-bot
authored andcommitted
bump nightlies to 1.9.0 (pytorch#51891)
Summary: similar to pytorch#45696 Signed-off-by: Eli Uriegas <[email protected]> Pull Request resolved: pytorch#51891 Reviewed By: izdeby Differential Revision: D26318646 Pulled By: seemethere fbshipit-source-id: 757194845c758a24eed2d0550866ba890e7a0b58
1 parent faaff0c commit 9653161

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Diff for: .circleci/scripts/binary_populate_env.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ PIP_UPLOAD_FOLDER='nightly/'
7373
# We put this here so that OVERRIDE_PACKAGE_VERSION below can read from it
7474
export DATE="$(date -u +%Y%m%d)"
7575
#TODO: We should be pulling semver version from the base version.txt
76-
BASE_BUILD_VERSION="1.8.0.dev$DATE"
76+
BASE_BUILD_VERSION="1.9.0.dev$DATE"
7777
# Change BASE_BUILD_VERSION to git tag when on a git tag
7878
# Use 'git -C' to make doubly sure we're in the correct directory for checking
7979
# the git tag
@@ -136,7 +136,7 @@ if [[ "${BUILD_FOR_SYSTEM:-}" == "windows" ]]; then
136136
fi
137137
138138
export DATE="$DATE"
139-
export NIGHTLIES_DATE_PREAMBLE=1.8.0.dev
139+
export NIGHTLIES_DATE_PREAMBLE=1.9.0.dev
140140
export PYTORCH_BUILD_VERSION="$PYTORCH_BUILD_VERSION"
141141
export PYTORCH_BUILD_NUMBER="$PYTORCH_BUILD_NUMBER"
142142
export OVERRIDE_PACKAGE_VERSION="$PYTORCH_BUILD_VERSION"

Diff for: android/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ repositories {
3434
3535
dependencies {
3636
...
37-
implementation 'org.pytorch:pytorch_android:1.8.0-SNAPSHOT'
38-
implementation 'org.pytorch:pytorch_android_torchvision:1.8.0-SNAPSHOT'
37+
implementation 'org.pytorch:pytorch_android:1.9.0-SNAPSHOT'
38+
implementation 'org.pytorch:pytorch_android_torchvision:1.9.0-SNAPSHOT'
3939
...
4040
}
4141
```

Diff for: android/test_app/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ dependencies {
149149
//nativeBuildImplementation(name: 'pytorch_android_torchvision-release', ext: 'aar')
150150
//extractForNativeBuild(name: 'pytorch_android-release', ext: 'aar')
151151

152-
nightlyImplementation 'org.pytorch:pytorch_android:1.8.0-SNAPSHOT'
153-
nightlyImplementation 'org.pytorch:pytorch_android_torchvision:1.8.0-SNAPSHOT'
152+
nightlyImplementation 'org.pytorch:pytorch_android:1.9.0-SNAPSHOT'
153+
nightlyImplementation 'org.pytorch:pytorch_android_torchvision:1.9.0-SNAPSHOT'
154154

155155
aarImplementation(name:'pytorch_android', ext:'aar')
156156
aarImplementation(name:'pytorch_android_torchvision', ext:'aar')

Diff for: torch/csrc/onnx/onnx.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ enum class TrainingMode {
2020
// onnx::IR_VERSION. with this change, the test_operators.py will be more
2121
// stable. only bump it when it's necessary
2222
static const size_t IR_VERSION = 6;
23-
static const char* PRODUCER_VERSION = "1.8";
23+
static const char* PRODUCER_VERSION = "1.9";
2424
}} // namespace torch::onnx

Diff for: version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.0a0
1+
1.9.0a0

0 commit comments

Comments
 (0)