ronaldoussoren / modulegraph2

Modulegraph2 is a library for creating and introspecting the dependency graph between Python modules.
MIT License
11 stars 8 forks source link

Drop ``_virtualenv_support.py`` #20

Closed ronaldoussoren closed 1 year ago

ronaldoussoren commented 1 year ago

Any recent-ish version of virtualenv is build on top of the stdlib venv package. This means that the code in _virtualenv_support.py is no longer needed (verified in testing).

Hence drop this file.

ronaldoussoren commented 1 year ago

Needs further investigation, looks like there is still a way to trigger the code in _virtualenv_support.py by using activate_this.py in a virtualenv.

ronaldoussoren commented 1 year ago

Won't drop this, when activating a virtualenv with activate_this.py the support code is still needed.