Skip to content
Snippets Groups Projects
Unverified Commit 309615ad authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

remove satella

parent caf07997
No related branches found
No related tags found
No related merge requests found
Pipeline #61311 failed with stages
in 3 minutes and 24 seconds
......@@ -118,4 +118,30 @@ build_python310:
build_python311:
extends: .build_python
image: python:3.11
\ No newline at end of file
image: python:3.11
.build_python:
stage: build
script:
- pip install --break-system-packages --upgrade Cython setuptools pip repairwheel doctor-wheel
- pip install --break-system-packages -r requirements.txt
- python setup.py bdist_wheel
- repairwheel dist/*.whl -o .
- doctor-wheel *.whl
artifacts:
paths:
- "*.whl"
after_script:
- pip install twine
- TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi *.whl
only:
- tags
except:
- branches
deploy_python35:
extends: .build_python
image: python:3.5
\ No newline at end of file
......@@ -24,7 +24,7 @@ cdef extern from "{cdef_section.h_file_name}":
if name == "{getdef_section.module_name}":
return PyInit_{getdef_section.coded_module_name}()""", getdef_section=getdef_section)
else:
output.append(""" elif name == "{getdef_section.module_name}":)
output.append(""" elif name == "{getdef_section.module_name}":
return PyInit_{getdef_section.coded_module_name}()""", getdef_section=getdef_section)
output.append_many("""
......
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