Skip to content

Commit 44d04f9

Browse files
committed
CLN: line lengths
1 parent 42f2180 commit 44d04f9

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

nox.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
import nox
99

1010

11-
PANDAS_PRE_WHEELS='https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com'
11+
PANDAS_PRE_WHEELS = (
12+
'https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83'
13+
'.ssl.cf2.rackcdn.com')
1214

1315

1416
@nox.session
@@ -29,21 +31,24 @@ def default(session):
2931
@nox.session
3032
def test27(session):
3133
session.interpreter = 'python2.7'
32-
session.install('-r', os.path.join('.', 'ci', 'requirements-2.7-0.19.2.pip'))
34+
session.install(
35+
'-r', os.path.join('.', 'ci', 'requirements-2.7-0.19.2.pip'))
3336
default(session)
3437

3538

3639
@nox.session
3740
def test35(session):
3841
session.interpreter = 'python3.5'
39-
session.install('-r', os.path.join('.', 'ci', 'requirements-3.5-0.18.1.pip'))
42+
session.install(
43+
'-r', os.path.join('.', 'ci', 'requirements-3.5-0.18.1.pip'))
4044
default(session)
4145

4246

4347
@nox.session
4448
def test36(session):
4549
session.interpreter = 'python3.6'
46-
session.install('-r', os.path.join('.', 'ci', 'requirements-3.6-0.20.1.conda'))
50+
session.install(
51+
'-r', os.path.join('.', 'ci', 'requirements-3.6-0.20.1.conda'))
4752
default(session)
4853

4954

@@ -56,7 +61,8 @@ def test36master(session):
5661
'--timeout=60',
5762
'-f', PANDAS_PRE_WHEELS,
5863
'pandas')
59-
session.install('-r', os.path.join('.', 'ci', 'requirements-3.6-MASTER.pip'))
64+
session.install(
65+
'-r', os.path.join('.', 'ci', 'requirements-3.6-MASTER.pip'))
6066
default(session)
6167

6268

0 commit comments

Comments
 (0)