Skip to content

Releases: kevinconway/venvctrl

v0.9.0 - Fix venv bash activation script relocation

09 Nov 21:08
92e2f4b
Compare
Choose a tag to compare

This fixes a bug in the regular expression used to match and modify the paths in venv activation scripts. Virtualenv users were unaffected.

What's Changed

Full Changelog: 0.8.0...0.9.0

v0.8.0 - Update for virtualenv>=20.26.6

27 Oct 11:38
f3a5035
Compare
Choose a tag to compare

A recent update to virtualenv included a small change to the format of activation scripts that broke the relocate feature. This release updates the relocate feature to work for both old and new style activation scripts.

What's Changed

Full Changelog: 0.7.0...0.8.0

v0.7.0 - Support stdlib venv module for Python 3.12

14 Jun 13:37
35eeb0f
Compare
Choose a tag to compare

The standard library venv module was close enough to virtualenv that it worked as-is until Python 3.12. This release adds support for venv changes in Python 3.12.

What's Changed

Full Changelog: 0.6.0...0.7.0

v0.6.0 - Fix nushell for virtualenv>=20.14.0

17 Mar 03:19
e3167ac
Compare
Choose a tag to compare

Thanks to @mmeier162 for fixing nushell support.

This release modifies nushell activation script handling to work with both old and new versions. Existing users who were pinned to virtualenv<=20.11.2 are unaffected. Those wishing to use venvctrl with the latest virtualenv versions may now do so without needing to also disable nushell support.

v0.5.0 - Add nu shell support

30 Dec 03:30
65bc1d0
Compare
Choose a tag to compare

Virtualenv 20.8.0 and above includes a new activate script for nu shell. This release add support for that new file.

Account for modern quote characters

23 Nov 23:14
f7b8426
Compare
Choose a tag to compare

A patch introduced in virtualenv 20.0.0 changed double quotes to single
quotes for the activate script variables that contain the embedded path
of the virtualenv. The existing tests were able to detect the regression
when run with the latest virtualenv. This patch modifies the regexes
used to detect the embedded path by checking for both kinds of quote
characters. Additionally, the output format of modified paths now uses
single quotes anywhere that virtualenv does so the outputs match.

Add support for .pth files and xsh activation scripts

25 Aug 04:34
53cb9cc
Compare
Choose a tag to compare
  • Add recursive .pth detection and path rewriting
  • Add support xsh scripts
  • Format project using black