Opened 3 weeks ago
Closed 3 weeks ago
#37098 closed Cleanup/optimization (fixed)
Add dynamically linked binary environment variables to tox config.
| Reported by: | Johannes Maron | Owned by: | Vaibhav Pant |
|---|---|---|---|
| Component: | Core (Other) | Version: | dev |
| Severity: | Normal | Keywords: | |
| Cc: | Johannes Maron | Triage Stage: | Ready for checkin |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | yes | UI/UX: | no |
Description
I am always running into issues when I install a fresh py3 environment via tox on Darwin arm64 with homebrew:
tox -re py3
I'd like to extend tox's passenv configuration with
LIBMEMCACHED,GDAL_LIBRARY_PATH,- and
GEOS_LIBRARY_PATH.
All of those are commonly used to locate linked binaries.
I am currently doing those changes locally and always have to remember not to commit them.
Therefore, I'd like to commit them once and merge them into main :P
Change History (7)
comment:1 by , 3 weeks ago
| Component: | Uncategorized → Core (Other) |
|---|---|
| Triage Stage: | Unreviewed → Accepted |
comment:2 by , 3 weeks ago
| Owner: | set to |
|---|---|
| Status: | new → assigned |
comment:3 by , 3 weeks ago
| Has patch: | set |
|---|
comment:4 by , 3 weeks ago
comment:5 by , 3 weeks ago
| Patch needs improvement: | set |
|---|
comment:6 by , 3 weeks ago
| Patch needs improvement: | unset |
|---|---|
| Triage Stage: | Accepted → Ready for checkin |
Note:
See TracTickets
for help on using tickets.
PR: https://github.com/django/django/pull/21279
Added the requested environment variables to tox’s passenv configuration.