Skip to content

Commit 2e09274

Browse files
authored
migrate imports from localstack_ext to localstack.pro.core (#27)
1 parent 0fee989 commit 2e09274

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
include:
20-
- runner: macos-11
20+
- runner: macos-12
2121
os: darwin
2222
arch: amd64
2323
- runner: macos-13-xlarge

Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,17 @@ $(VENV_ACTIVATE): requirements.txt
2222

2323
dist-bin/localstack build: $(VENV_ACTIVATE) main.py
2424
$(VENV_RUN); pyinstaller main.py \
25+
--log-level=DEBUG \
2526
$(PYINSTALLER_ARGS) -n localstack \
2627
--hidden-import cookiecutter.main \
2728
--hidden-import cookiecutter.extensions \
28-
--hidden-import localstack_ext.cli.localstack \
29-
--hidden-import localstack_ext.plugins \
3029
--hidden-import localstack.dev.run.configurators \
31-
--hidden-import localstack_ext.extensions.plugins \
32-
--hidden-import localstack_ext.extensions.bootstrap \
30+
--hidden-import localstack.pro.core.plugins \
31+
--hidden-import localstack.pro.core.cli.localstack \
32+
--hidden-import localstack.pro.core.extensions.plugins \
33+
--copy-metadata localstack_ext \
34+
--collect-data localstack.pro.core \
35+
--exclude-module importlib_resources \
3336
--additional-hooks-dir hooks
3437

3538
dist-dir/localstack: PYINSTALLER_ARGS=--distpath=dist-dir

hooks/hook-localstack_ext.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pyinstaller
2-
localstack==3.5.0
2+
localstack==3.5.1.dev20240718105800
33
cookiecutter

0 commit comments

Comments
 (0)