holgern / pyedflib

pyedflib is a python library to read/write EDF+/BDF+ files based on EDFlib.
http://pyedflib.readthedocs.org/
BSD 3-Clause "New" or "Revised" License
214 stars 121 forks source link

Remove limit on numpy version #153

Closed jcbsv closed 2 years ago

jcbsv commented 2 years ago

There is no guarantee that a specified numpy version has a wheel package for any given python version. By relaxing the numpy version limit, pip will fetch the available numpy wheel package, instead of trying to build the specific numpy version (which may fail to complete).

skjerns commented 2 years ago

perfect, thanks!

closes #152

cbrnr commented 2 years ago

Any plans when the next release will be out? Currently it is not possible to just pip install pyEDFlib on Python 3.10.

skjerns commented 2 years ago

@holgern could you make a new release for python 3.10? :)

flyingcow622 commented 2 years ago

How exactly do you go about relaxing the numpy version limit? sorry, I'm new to python.

skjerns commented 2 years ago

I think if you download the current release it should be already without version limit. What error are you getting? Are you on Python 3.10?