File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -442,4 +442,4 @@ Python libraries as specified in `<requirements.txt>`_.
442442
443443Building and running tests additionally requires packages listed in `<requirements_test.txt >`_.
444444
445- Tested on Linux, OS X and Windows.
445+ Tested on Linux, macOS and Windows.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Package(boilerplates.setup.Package):
1717 'Intended Audience :: Developers' ,
1818 'License :: OSI Approved :: Apache Software License' ,
1919 'Natural Language :: English' ,
20- 'Operating System :: MacOS :: MacOS X ' ,
20+ 'Operating System :: MacOS' ,
2121 'Operating System :: Microsoft :: Windows' ,
2222 'Operating System :: POSIX :: Linux' ,
2323 'Programming Language :: Python :: 3.8' ,
Original file line number Diff line number Diff line change 1515 getattr (logging , os .environ .get ('LOGGING_LEVEL' , 'debug' ).upper ()))
1616logging .getLogger ('test' ).setLevel (logging .DEBUG )
1717
18- if 'EXAMPLE_PROJECTS_PATH' not in os .environ :
19- os .environ ['EXAMPLE_PROJECTS_PATH' ] = '..'
Original file line number Diff line number Diff line change 1111
1212_HERE = pathlib .Path (__file__ ).resolve ().parent
1313
14- _GIT_REPOS_ROOT = pathlib .Path (os .environ [ 'EXAMPLE_PROJECTS_PATH' ]). absolute ()
14+ _GIT_REPOS_ROOT = pathlib .Path (os .environ . get ( 'EXAMPLE_PROJECTS_PATH' , '..' )). resolve ()
1515
1616GIT_REPO_EXAMPLES = list (_ for _ in _GIT_REPOS_ROOT .glob ('**/.git' ) if _ .is_dir ())
1717
You can’t perform that action at this time.
0 commit comments