Skip to content

Commit

Permalink
setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-sans-paille committed Oct 15, 2023
1 parent c66d168 commit f072fba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pythran/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ def parse_define(define):
# `numpy.distutils` not present for Python >= 3.12
except ImportError:
blas = numpy.show_config('dicts')["Build Dependencies"]["blas"]
extension["libraries"].append(blas['name'])
libblas = {'openblas64': 'openblas'}.get(blas['name'], blas['name'])
extension["libraries"].append(libblas)


# final macro normalization
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ply>=3.4
setuptools
gast~=0.5.0
numpy
beniget~=0.4.0

0 comments on commit f072fba

Please sign in to comment.