-
-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PEX is not packaging its subpackages and its Dependencies #609
Comments
It would be helpful if you could:
Drilling down on point 3 - right now the command line you gave: |
One more bit of debug advice: pex should package exactly what |
Thanks for debugging advice. it is rectified. If i change any command in setup.py file and iam building a new wheel ....still it is using OLDER cache ... |
That's a bug, but its pretty far afield of the initial issue report here. I'm going to close this issue as answered and let #620 stand in for this narrower issue. |
i have structured folder that contains
->tree
--->package1
---------->package2
---------->init.py
---------->main.py
--->setup.py
--->requirements.txt
--->package1.wheel
i want to build pex file for this structure.when i use command in tree folder "pex --python=python3 -rrequirements.txt package1 -e package.main -o samplepkg.pex"
When i try run the samplepkg.pex ...Error:package2 not found .....when i run the pex file deactivating the environment ...dependencies module not found
Is this Tox is for packaging dependencies module and subpackages rite..?
The text was updated successfully, but these errors were encountered: