File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1616
1717from functools import wraps
1818import pathlib
19- import os
2019import nox
2120import time
2221
2625BLACK_VERSION = "black==23.7.0"
2726BLACK_PATHS = ("." ,)
2827
29- DEFAULT_PYTHON_VERSION = "3.9 "
28+ DEFAULT_PYTHON_VERSION = "3.13 "
3029UNIT_TEST_PYTHON_VERSIONS = ["3.9" , "3.11" , "3.12" , "3.13" ]
3130CURRENT_DIRECTORY = pathlib .Path (__file__ ).parent .absolute ()
3231
@@ -190,9 +189,8 @@ def lint(session):
190189 session .install ("flake8" , BLACK_VERSION )
191190 session .install ("-e" , "." )
192191 session .run ("python" , "-m" , "pip" , "freeze" )
193- session .run ("flake8" , os . path . join ( "scripts" ) )
192+ session .run ("flake8" , "." )
194193 session .run ("flake8" , "tests" )
195- session .run ("flake8" , "benchmark" )
196194 session .run ("black" , "--check" , * BLACK_PATHS )
197195
198196
You can’t perform that action at this time.
0 commit comments