Skip to content

Commit

Permalink
BLD: update OpenBLAS to an intermeidate commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Jul 17, 2023
1 parent eef080a commit 3974485
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/openblas_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
from urllib.request import urlopen, Request
from urllib.error import HTTPError

OPENBLAS_V = '0.3.23'
OPENBLAS_LONG = 'v0.3.23'
OPENBLAS_V = '0.3.23.dev'
OPENBLAS_LONG = 'v0.3.23-246-g3d31191b'
BASE_LOC = 'https://anaconda.org/multibuild-wheels-staging/openblas-libs'
BASEURL = f'{BASE_LOC}/{OPENBLAS_LONG}/download'
SUPPORTED_PLATFORMS = [
Expand Down

2 comments on commit 3974485

@celestinoxp
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this url: "https://anaconda.org/multibuild-wheels-staging/openblas-libs" I only can see version "v0.3.9-452-g349b722d"
where is version: v0.3.23-246-g3d31191b ?

wouldn't it be better to create a script to detect the latest version, instead of being manual?

If this doesn't make sense, ignore what I said.

@mattip
Copy link
Member Author

@mattip mattip commented on 3974485 Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Click on the "files" tab to see all the files. We don't want to use the latest version, we want to tightly control which OpenBLAS version we ship in the wheels. We are in the process of adding a CI job to test latest OpenBLAS HEAD to make sure it works, that is why the URL now has HEAD files.

Please sign in to comment.