Erik Cederstrand

Results 24 issues of Erik Cederstrand

`>=0.x` is equivalent to "no restriction" Fixes #109

Trying to install matrixprofile on Python 3.10.16 with pip 23.1.2 fails with this error: ```python × Getting requirements to build wheel did not run successfully. │ exit code: 1 ╰─>...

Unless there's an issue with a specific minor version, let's assume breaking changes only arrive in major versions

I have a PostgreSQL database that is not managed by Django. Tables are continuously added to it. You could think of it as a data lake or data warehouse. I'd...

Changes requirements to allow versions up to the next major version Fixes #59

Overview https://github.com/MannLabs/alphamap/blob/master/requirements.txt pins a handful of Python package dependencies, e.g. numpy==1.19.2. I cannot decide from the commit history that this is due to specific requirements of alphamap. Pinning packages makes...

Import numpy at a stage where setup_requires has had time to install numpy. This allows installing the package into an empty virtualenv.

Item create/update in send mode sometimes returns a result even though it shouldn't. Relax this assertion.

This moves the import of numpy into a custom build_ext command so we can: * postpone the import of numpy to a time where setuptools has had a chance to...

A Python package should always be able to install itself in an empty virtualenv and handle dependencies automatically. Trying to do this with PyPathway fails: ```bash $ git clone https://github.com/iseekwonderful/PyPathway.git...