@@ -43,14 +43,6 @@ def default(session):
43
43
# serialization, though.
44
44
dev_install = ".[all,fastparquet]"
45
45
46
- # There is no pyarrow or fastparquet wheel for Python 3.8.
47
- if session .python == "3.8" :
48
- # Since many tests are skipped due to missing dependencies, test
49
- # coverage is much lower in Python 3.8. Remove once we can test with
50
- # pyarrow.
51
- coverage_fail_under = "--cov-fail-under=91"
52
- dev_install = ".[pandas,tqdm]"
53
-
54
46
session .install ("-e" , dev_install )
55
47
56
48
# IPython does not support Python 2 after version 5.x
@@ -80,7 +72,7 @@ def unit(session):
80
72
default (session )
81
73
82
74
83
- @nox .session (python = ["2.7" , "3.7 " ])
75
+ @nox .session (python = ["2.7" , "3.8 " ])
84
76
def system (session ):
85
77
"""Run the system test suite."""
86
78
@@ -110,7 +102,7 @@ def system(session):
110
102
)
111
103
112
104
113
- @nox .session (python = ["2.7" , "3.7 " ])
105
+ @nox .session (python = ["2.7" , "3.8 " ])
114
106
def snippets (session ):
115
107
"""Run the snippets test suite."""
116
108
@@ -130,7 +122,7 @@ def snippets(session):
130
122
session .run ("py.test" , "samples" , * session .posargs )
131
123
132
124
133
- @nox .session (python = "3.7 " )
125
+ @nox .session (python = "3.8 " )
134
126
def cover (session ):
135
127
"""Run the final coverage report.
136
128
@@ -142,7 +134,7 @@ def cover(session):
142
134
session .run ("coverage" , "erase" )
143
135
144
136
145
- @nox .session (python = "3.7 " )
137
+ @nox .session (python = "3.8 " )
146
138
def lint (session ):
147
139
"""Run linters.
148
140
@@ -159,7 +151,7 @@ def lint(session):
159
151
session .run ("black" , "--check" , * BLACK_PATHS )
160
152
161
153
162
- @nox .session (python = "3.7 " )
154
+ @nox .session (python = "3.8 " )
163
155
def lint_setup_py (session ):
164
156
"""Verify that setup.py is valid (including RST check)."""
165
157
@@ -180,7 +172,7 @@ def blacken(session):
180
172
session .run ("black" , * BLACK_PATHS )
181
173
182
174
183
- @nox .session (python = "3.7 " )
175
+ @nox .session (python = "3.8 " )
184
176
def docs (session ):
185
177
"""Build the docs."""
186
178
0 commit comments