Skip to content

Commit 00666fb

Browse files
iofu728liyucheng09Starmys
authored
Feature(MInference): add bdist cache (microsoft#11)
Co-authored-by: Yucheng Li <[email protected]> Co-authored-by: Chengruidong Zhang <[email protected]>
1 parent 41f8cea commit 00666fb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
matrix:
5151
os: ['ubuntu-20.04']
5252
python-version: ['3.8', '3.9', '3.10', '3.11']
53-
pytorch-version: ['2.2.2', '2.3.0']
54-
cuda-version: ['12.2.2']
53+
pytorch-version: ['2.0.1', '2.1.2', '2.2.2', '2.3.0']
54+
cuda-version: ['11.8.0', '12.2.2']
5555
exclude:
5656
# see https://github.com/pytorch/pytorch/blob/main/RELEASE.md#release-compatibility-matrix
5757
# Pytorch < 2.2 does not support Python 3.12

minference/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
_MINOR = "1"
66
# On master and in a nightly release the patch should be one ahead of the last
77
# released build.
8-
_PATCH = "2"
8+
_PATCH = "3"
99
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
1010
# https://semver.org/#is-v123-a-semantic-version for the semantics.
1111
_SUFFIX = ""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class CachedWheelsCommand(_bdist_wheel):
169169
"""
170170

171171
def run(self):
172-
if True:
172+
if FORCE_BUILD:
173173
return super().run()
174174
wheel_url, wheel_filename = get_wheel_url()
175175
print("Guessing wheel URL: ", wheel_url)

0 commit comments

Comments
 (0)