Skip to content

Commit 3903b2c

Browse files
committed
Squash commits to make wheel building work again
add underline dash increment version use latest ubuntu for pypi upload Update README.rst Update citations
1 parent 2f7e37c commit 3903b2c

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.8'
27+
python-version: '3.10'
2828
- name: Install deps
2929
run: python -m pip install build twine
3030
- name: Build SDist
@@ -47,7 +47,7 @@ jobs:
4747
# Used to host cibuildwheel
4848
- uses: actions/setup-python@v5
4949
with:
50-
python-version: '3.8'
50+
python-version: '3.10'
5151
- name: Install cibuildwheel
5252
run: python -m pip install cibuildwheel
5353

@@ -96,7 +96,7 @@ jobs:
9696
upload_pypi:
9797
name: Upload to PyPI (prod)
9898
needs: [build_wheels, build_aarch64_wheels, make_sdist]
99-
runs-on: ubuntu-20.04
99+
runs-on: ubuntu-latest
100100
steps:
101101
- uses: actions/download-artifact@v4
102102
with:

README.rst

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,24 @@ Additionally functionality as anonymizing, dropping or renaming channels can be
106106
# rename channels within a file
107107
highlevel.rename_channels('file.edf', mapping={'C3-M1':'C3'})
108108
109+
Citation
110+
--------
111+
112+
If you use our software as part of a scientific publication, please cite us. Releases can be cited via Zenodo.
113+
114+
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.14957195.svg
115+
:target: https://doi.org/10.5281/zenodo.3492211
116+
117+
::
118+
119+
Holger Nahrstaedt, Simon Kern, Dimitri Papadopoulos Orfanos, Raphael Vallat, Clemens Brunner, Luca Cerina, Stefan Appelhoff, David T.H. Kao, Craig Franklin, Florian Hofer, bitterisland07, myd7349, Marijn van Vliet, Jukka Zitting, Guillaume Cathelain, David Ojeda, Chadwick Boulay, Blake, Ben Beasley, … Jacob Svensson. (2025). holgern/pyedflib: v0.1.40 (v0.1.40). Zenodo. https://doi.org/10.5281/zenodo.14957195
109120

110121
License
111122
-------
112123

113124
pyEDFlib is a free Open Source software released under the BSD 2-clause license.
114125

115126

116-
Releases can be cited via Zenodo.
117-
118-
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5678481.svg
119-
:target: https://doi.org/10.5281/zenodo.5678481
120127

121128
.. _Cython: https://cython.org/
122129
.. _Anaconda: https://www.anaconda.com/

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
MAJOR = 0
2525
MINOR = 1
26-
MICRO = 40
26+
MICRO = 41
2727
ISRELEASED = True
2828
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
2929

0 commit comments

Comments
 (0)