Skip to content

Commit

Permalink
BLD: Change build options for pywrapper.
Browse files Browse the repository at this point in the history
  • Loading branch information
MilanSkocic committed Nov 18, 2023
1 parent b58e11a commit c8db4b1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
12 changes: 7 additions & 5 deletions pywrapper/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ py -3.10 setup.py build_ext --inplace
py -3.11 setup.py build_ext --inplace
py -3.12 setup.py build_ext --inplace

py -3.8 -m build
py -3.9 -m build
py -3.10 -m build
py -3.11 -m build
py -3.12 -m build
py -3.12 -m build --no-isolation --sdist

py -3.8 -m build --no-isolation --wheel
py -3.9 -m build --no-isolation --wheel
py -3.10 -m build --no-isolation --wheel
py -3.11 -m build --no-isolation --wheel
py -3.12 -m build --no-isolation --wheel

py -3.8 -m unittest -v
py -3.9 -m unittest -v
Expand Down
12 changes: 7 additions & 5 deletions pywrapper/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ py310 setup.py build_ext --inplace
py311 setup.py build_ext --inplace
py312 setup.py build_ext --inplace

py38 -m build
py39 -m build
py310 -m build
py311 -m build
py312 -m build
py312 -m build --no-isolation --sdist

py38 -m build --no-isolation --wheel
py39 -m build --no-isolation --wheel
py310 -m build --no-isolation --wheel
py311 -m build --no-isolation --wheel
py312 -m build --no-isolation --wheel

py38 -m unittest -v
py39 -m unittest -v
Expand Down

0 comments on commit c8db4b1

Please sign in to comment.