summaryrefslogtreecommitdiff
path: root/.env
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-06-28 06:36:30 -0700
committerJon Dufresne <jon.dufresne@gmail.com>2018-08-08 21:35:43 -0700
commit482d3b4cea5770413988925035b91d94aae5a743 (patch)
treee5a74f64d11a8dcb6e72476ec8fdc32a58d0907e /.env
parentfcd80d46e66179f9464c2df745ffed07622d9ee3 (diff)
downloadisort-482d3b4cea5770413988925035b91d94aae5a743.tar.gz
Add testing and document support for Python 3.7
Python 3.7 was released on June 27, 2018. https://docs.python.org/3/whatsnew/3.7.html
Diffstat (limited to '.env')
-rw-r--r--.env4
1 files changed, 3 insertions, 1 deletions
diff --git a/.env b/.env
index 9651d0c5..b9ddb8fe 100644
--- a/.env
+++ b/.env
@@ -16,7 +16,9 @@ if [ ! -d "venv" ]; then
if ! hash pyvenv 2>/dev/null; then
function pyvenv()
{
- if hash pyvenv-3.6 2>/dev/null; then
+ if hash pyvenv-3.7 2>/dev/null; then
+ pyvenv-3.7 $@
+ elif hash pyvenv-3.6 2>/dev/null; then
pyvenv-3.6 $@
elif hash pyvenv-3.5 2>/dev/null; then
pyvenv-3.5 $@