Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions azure/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
# a bit overkill, all we really need is cython
python -m pip install --timeout=60 -r test_requirements.txt

# handle license
cp ../LICENSE_win32.txt LICENSE.txt
# append to license
cat ../LICENSE_win32.txt >> LICENSE.txt

# handle _distributor_init.py
PYTHONPATH=tools python -c "import openblas_support; openblas_support.make_init('numpy')"
Expand Down
2 changes: 1 addition & 1 deletion check_license.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import argparse

def check_text(text):
ok = (u'Copyright (c)' in text and
ok = (u'Copyright (c)' in text and u'NumPy Developers' in text and
re.search(u'This binary distribution of \w+ also bundles the following software', text))
return ok

Expand Down