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

fix build

parent 0cc9eab5
No related branches found
No related tags found
No related merge requests found
Pipeline #61602 failed with stages
in 7 minutes and 36 seconds
......@@ -63,10 +63,6 @@ test_python311:
extends: .test
image: python:3.11
test_python312:
extends: .test
image: python:3.12
.build_python:
only:
- tags
......@@ -75,7 +71,6 @@ test_python312:
stage: build
before_script:
- pip install --break-system-packages --upgrade Cython setuptools pip repairwheel doctor-wheel
- pip install --break-system-packages -r requirements.txt
script:
- python setup.py bdist_wheel
- repairwheel dist/*.whl -o .
......@@ -90,7 +85,6 @@ build_python35:
image: python:3.5
before_script:
- pip install --upgrade Cython setuptools pip repairwheel doctor-wheel
- pip install -r requirements.txt
build_python36:
......@@ -126,9 +120,9 @@ build_python311:
.build_python:
stage: build
script:
before_script:
- pip install --break-system-packages --upgrade Cython setuptools pip repairwheel doctor-wheel
- pip install --break-system-packages -r requirements.txt
script:
- python setup.py bdist_wheel
- mv dist/*.whl .
- repairwheel dist/*.whl -o .
......@@ -148,16 +142,22 @@ build_python311:
build_python35:
extends: .build_python
image: python:3.5
before_script:
- pip install --upgrade Cython setuptools pip repairwheel doctor-wheel
build_python36:
extends: .build_python
image: python:3.6
before_script:
- pip install --upgrade Cython setuptools pip repairwheel doctor-wheel
build_python37:
extends: .build_python
image: python:3.7
before_script:
- pip install --upgrade Cython setuptools pip repairwheel doctor-wheel
build_python38:
......@@ -179,8 +179,3 @@ build_python310:
build_python311:
extends: .build_python
image: python:3.11
build_python312:
extends: .build_python
image: python:3.12
\ No newline at end of file
# v2.0.1
* _TBA_
# v2.0
* got rid of the Mako dependency
......@@ -9,6 +5,7 @@
* moved the development to SMOK's cloud
* got rid of Satella dependency
* more tests
* dropped support for Python 3.12
# v1.7
......
......@@ -2,7 +2,7 @@
[metadata]
name = snakehouse
keywords = cython, extension, multiple, pyx
version = 2.0.1a1
version = 2.0
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license_files = LICENSE
......@@ -22,7 +22,6 @@ classifier =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
......
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