From ea864ff41165c948817f3a8b995126ba20d95687 Mon Sep 17 00:00:00 2001 From: Ananya Maiti Date: Wed, 10 Jun 2020 09:53:50 +0530 Subject: [PATCH 1/2] Use the default python version for nox in development --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index a10133a7..c8c2718e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -8,7 +8,7 @@ nox.options.error_on_external_run = True -@nox.session(python="3.5") +@nox.session def dev(session): session.install("-r", "requirements.txt") From 4d5260e518d1b81669d892b6f3b3f609df70299f Mon Sep 17 00:00:00 2001 From: Ananya Maiti Date: Sat, 13 Jun 2020 01:44:11 +0530 Subject: [PATCH 2/2] Make python version=3 Co-authored-by: Pradyun Gedam --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index c8c2718e..23c60f58 100644 --- a/noxfile.py +++ b/noxfile.py @@ -8,7 +8,7 @@ nox.options.error_on_external_run = True -@nox.session +@nox.session(python="3") def dev(session): session.install("-r", "requirements.txt")