Skip to content

Commit

Permalink
More options to build pex faster
Browse files Browse the repository at this point in the history
  • Loading branch information
pgoslatara committed Jul 19, 2024
1 parent cebccaf commit 13b900c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Binary file removed dist/dbt-bouncer.pex
Binary file not shown.
12 changes: 8 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
build-pex:
poetry run pex . \
-c dbt-bouncer \
-o ./dist/dbt-bouncer.pex \
--python-shebang='/usr/bin/env python' \
--interpreter-constraint ">=3.8,<3.13" \
--jobs 128 \
--max-install-jobs 0 \
--output-file ./dist/dbt-bouncer.pex \
--pip-version 23.2 \
--platform macosx_11_0_x86_64-cp-38-cp38 \
--platform macosx_11_0_x86_64-cp-39-cp39 \
--platform macosx_11_0_x86_64-cp-310-cp310 \
Expand All @@ -12,7 +14,9 @@ build-pex:
--platform manylinux2014_x86_64-cp-39-cp39 \
--platform manylinux2014_x86_64-cp-310-cp310 \
--platform manylinux2014_x86_64-cp-311-cp311 \
--platform manylinux2014_x86_64-cp-312-cp312
--platform manylinux2014_x86_64-cp-312-cp312 \
--python-shebang='/usr/bin/env python' \
--script dbt-bouncer

test:
poetry run pytest \
Expand Down

0 comments on commit 13b900c

Please sign in to comment.