File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -215,4 +215,4 @@ For code checking several CI systems is used in parallel:
215215
216216CD system
217217=========
218- `Travis CI: <https://travis-ci.org /python-useful-helpers/advanced-descriptors >`_ is used for package delivery on PyPI.
218+ `Travis CI: <https://travis-ci.com /python-useful-helpers/advanced-descriptors >`_ is used for package delivery on PyPI.
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def _extension(modpath):
5555if "win32" != sys .platform :
5656 REQUIRES_OPTIMIZATION .append (_extension ("advanced_descriptors.__init__" ))
5757
58- ext_modules = (
58+ EXT_MODULES = (
5959 cythonize (
6060 REQUIRES_OPTIMIZATION ,
6161 compiler_directives = dict (
@@ -231,7 +231,7 @@ def get_simple_vars_from_src(src):
231231 package_data = {"advanced_descriptors" : ["py.typed" ]},
232232)
233233if cythonize is not None :
234- setup_args ["ext_modules" ] = ext_modules
234+ setup_args ["ext_modules" ] = EXT_MODULES
235235 setup_args ["cmdclass" ] = dict (build_ext = AllowFailRepair )
236236
237237try :
You can’t perform that action at this time.
0 commit comments