Skip to content
Snippets Groups Projects
Commit 080cc034 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

Merge branch 'master' into develop

parents 7cd4e335 7a34f651
No related branches found
No related tags found
No related merge requests found
......@@ -38,9 +38,11 @@ jobs:
- stage: deploy
python: "3.8"
before_script:
- sudo apt-get update
- sudo apt-get install -y patchelf
- pip install wheel twine doctor-wheel auditwheel snakehouse satella
script:
- python setup.py bdist_wheel sdist
- RELEASE=1 python setup.py bdist_wheel sdist
- cd dist
- doctor-wheel *.whl
- auditwheel repair --plat manylinux2014_x86_64 *.whl
......@@ -48,9 +50,11 @@ jobs:
- stage: deploy
python: "3.9"
before_script:
- sudo apt-get update
- sudo apt-get install -y patchelf
- pip install wheel twine doctor-wheel auditwheel snakehouse satella
script:
- python setup.py bdist_wheel
- RELEASE=1 python setup.py bdist_wheel
- cd dist
- doctor-wheel *.whl
- auditwheel repair --plat manylinux2014_x86_64 *.whl
......
......@@ -17,7 +17,7 @@ monkey_patch_parallel_compilation()
directives = {'language_level': '3'}
ext_kwargs = {}
cythonize_kwargs = {}
if 'CI' in os.environ:
if 'CI' in os.environ and 'RELEASE' not in os.environ:
ext_kwargs['define_macros'] = [("CYTHON_TRACE_NOGIL", "1")]
directives.update(profile=True, linetrace=True, embedsignature=True)
cythonize_kwargs['gdb_debug'] = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment