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 Jacob Walls, 3 weeks ago

Component: UncategorizedCore (Other)
Triage Stage: UnreviewedAccepted

comment:2 by Vaibhav Pant, 3 weeks ago

Owner: set to Vaibhav Pant
Status: newassigned

comment:3 by Vaibhav Pant, 3 weeks ago

Has patch: set

comment:4 by Vaibhav Pant, 3 weeks ago

PR: https://github.com/django/django/pull/21279
Added the requested environment variables to tox’s passenv configuration.

comment:5 by Johannes Maron, 3 weeks ago

Patch needs improvement: set

comment:6 by Jacob Walls, 3 weeks ago

Patch needs improvement: unset
Triage Stage: AcceptedReady for checkin

comment:7 by Jacob Walls <jacobtylerwalls@…>, 3 weeks ago

Resolution: fixed
Status: assignedclosed

In a9e6c43:

Fixed #37098 -- Added dynamically linked binary env vars to tox passenv.

Note: See TracTickets for help on using tickets.
Back to Top