Thanks for contributing, make sure you address all the checklists (for details on how see development documentation)
Hey everyone I noticed source venv/bin/activate wasn't working on fish, and that is when I found a better way of passing environment variables around. If you execute a bash script with #!/usr/bin/env bash you will pass in environment variables, and features like EXPORT and SET will also work.
There is no reason not to have this feature, as it is helpful for anyone who cannot use bash, but would like to use the default venv files produced.
Thanks for contributing, make sure you address all the checklists (for details on how see development documentation)
Hey everyone I noticed
source venv/bin/activate
wasn't working on fish, and that is when I found a better way of passing environment variables around. If you execute a bash script with#!/usr/bin/env bash
you will pass in environment variables, and features like EXPORT and SET will also work.There is no reason not to have this feature, as it is helpful for anyone who cannot use bash, but would like to use the default venv files produced.