diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4691c48..27f6a96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,8 +50,8 @@ jobs: matrix: os: ['ubuntu-20.04'] python-version: ['3.8', '3.9', '3.10', '3.11'] - pytorch-version: ['2.2.2', '2.3.0'] - cuda-version: ['12.2.2'] + pytorch-version: ['2.0.1', '2.1.2', '2.2.2', '2.3.0'] + cuda-version: ['11.8.0', '12.2.2'] exclude: # see https://github.com/pytorch/pytorch/blob/main/RELEASE.md#release-compatibility-matrix # Pytorch < 2.2 does not support Python 3.12 diff --git a/minference/version.py b/minference/version.py index d7adf2a..7668237 100644 --- a/minference/version.py +++ b/minference/version.py @@ -5,7 +5,7 @@ _MINOR = "1" # On master and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "2" +_PATCH = "3" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = "" diff --git a/setup.py b/setup.py index 2ee4f73..20f3156 100644 --- a/setup.py +++ b/setup.py @@ -169,7 +169,7 @@ class CachedWheelsCommand(_bdist_wheel): """ def run(self): - if True: + if FORCE_BUILD: return super().run() wheel_url, wheel_filename = get_wheel_url() print("Guessing wheel URL: ", wheel_url)