File tree Expand file tree Collapse file tree 3 files changed +2
-12
lines changed
{{cookiecutter.repo_name}} Expand file tree Collapse file tree 3 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Cookiecutter template for an OpenStack project. See https://github.com/audreyr/c
99* hacking _: Enforces the OpenStack Hacking Guidelines
1010* stestr _: Runs tests using stestr
1111* OpenStack-Infra _: Ready for OpenStack Continuous Integration testing
12- * Tox _ testing: Setup to easily test for Python 2.7, 3.5
12+ * Tox _ testing: Setup to easily test for Python 3.7
1313* Sphinx _ docs: Documentation ready for generation and publication
1414
1515Usage
Original file line number Diff line number Diff line change @@ -13,10 +13,8 @@ classifier =
1313 License :: OSI Approved :: Apache Software License
1414 Operating System :: POSIX :: Linux
1515 Programming Language :: Python
16- Programming Language :: Python :: 2
17- Programming Language :: Python :: 2.7
1816 Programming Language :: Python :: 3
19- Programming Language :: Python :: 3.5
17+ Programming Language :: Python :: 3.7
2018
2119[files]
2220packages =
Original file line number Diff line number Diff line change 1616# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
1717import setuptools
1818
19- # In python < 2.7.4, a lazy loading of package `pbr` will break
20- # setuptools if some other modules registered functions in `atexit`.
21- # solution from: https://bugs.python.org/issue15881#msg170215
22- try :
23- import multiprocessing # noqa
24- except ImportError :
25- pass
26-
2719setuptools .setup (
2820 setup_requires = ['pbr' ],
2921 pbr = True )
You can’t perform that action at this time.
0 commit comments