aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-08-24 20:24:25 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2022-08-24 20:58:55 +0300
commit5c1aa542b04e983200ed4805c513bbcfe7e3628c (patch)
tree3fd0a77615b25ab8e9a0543359a8f5aed66cf161 /.github/workflows/release.yml
parentremove mk_cpy_loadable_testcase (diff)
downloadsnakeoil-5c1aa542b04e983200ed4805c513bbcfe7e3628c.tar.gz
snakeoil-5c1aa542b04e983200ed4805c513bbcfe7e3628c.tar.bz2
snakeoil-5c1aa542b04e983200ed4805c513bbcfe7e3628c.zip
build: simplify after cython removal
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml15
1 files changed, 2 insertions, 13 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4c559762..b8ffb0c5 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -39,19 +39,8 @@ jobs:
# run in-place build so wheel deps use release versions
python setup.py build_py -i
- - name: Build wheels
- uses: joerick/cibuildwheel@v2.8.1
- with:
- output-dir: dist
- env:
- CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* pp39-*
- CIBW_ARCHS_LINUX: x86_64
- CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
- CIBW_PRERELEASE_PYTHONS: True
- CIBW_BEFORE_BUILD: pip install -r {project}/requirements/dist.txt
- CIBW_BEFORE_TEST: pip install -r {project}/requirements/test.txt
- CIBW_ENVIRONMENT: PY_COLORS=1
- CIBW_TEST_COMMAND: pytest -v {project}/tests
+ - name: Build wheel
+ run: python setup.py bdist_wheel
- name: Output dist file info
run: |