Skip to content

Commit

Permalink
Merge pull request #121 from AllenCellModeling/fix/cibuildwheel-manyl…
Browse files Browse the repository at this point in the history
…inux-centos7-eol

maintenance: clean up build errors and warnings and update some actions
  • Loading branch information
toloudis authored Jul 8, 2024
2 parents 3fe63f9 + 8ea557f commit fe768f9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 22 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/py-build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
- name: Test with pytest
run: |
pytest --cov-report xml --cov=aicspylibczi aicspylibczi/tests
- name: Upload codecov
uses: codecov/codecov-action@v4
lint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -72,8 +70,9 @@ jobs:
- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-sdist
path: dist/*.tar.gz

build_wheels:
Expand Down Expand Up @@ -113,8 +112,9 @@ jobs:
shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-wheels
path: wheelhouse/*.whl

upload_all:
Expand All @@ -126,10 +126,11 @@ jobs:
steps:
- uses: actions/setup-python@v5

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: artifact
pattern: build-*
path: dist
merge-multiple: true

- uses: pypa/[email protected]
with:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/py-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
MY_VERSION=$(python setup.py --version)
pip install dist/aicspylibczi-$MY_VERSION.tar.gz
shell: bash
- name: Upload codecov
uses: codecov/codecov-action@v4

lint:
runs-on: ubuntu-latest
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

[![C++ Build & Test](https://github.com/AllenCellModeling/aicspylibczi/workflows/C%2B%2B%20Main%20Build/badge.svg)](https://github.com/AllenCellModeling/aicspylibczi/actions)
[![Python Build & Test](https://github.com/AllenCellModeling/aicspylibczi/workflows/Python%20Build%20Main/badge.svg)](https://github.com/AllenCellModeling/aicspylibczi/actions)
[![codecov](https://codecov.io/gh/AllenCellModeling/aicspylibczi/branch/master/graph/badge.svg)](https://codecov.io/gh/AllenCellModeling/aicspylibczi)
[![License: GPLv3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/AllenCellModeling/aicspylibczi/blob/master/LICENSE)

Python module to expose [libCZI](https://github.com/zeiss-microscopy/libCZI) functionality for reading (subset of) Zeiss
Expand Down
12 changes: 0 additions & 12 deletions codecov.yml

This file was deleted.

2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[flake8]
exclude = pybind11,libCZI,_aicspylibczi,c_tests,docs,CMakeLists.txt,codecov.yml,Example_Usage.ipynb
exclude = pybind11,libCZI,_aicspylibczi,c_tests,docs,CMakeLists.txt,Example_Usage.ipynb

[tox]
skipsdist = True
Expand Down

0 comments on commit fe768f9

Please sign in to comment.