AIM-Harvard / pyradiomics

Open-source python package for the extraction of Radiomics features from 2D and 3D images and binary masks. Support: https://discourse.slicer.org/c/community/radiomics
http://pyradiomics.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
1.11k stars 485 forks source link

Bump version in pyproject toml to avoid metadata clash with file version #836

Open sjswerdloff opened 11 months ago

sjswerdloff commented 11 months ago

A few of the issues ( #831 and #828 ) posted appear to have root cause in the metadata clash with the package publish/file version. This is an attempt at resolving that by updating the version value in the pyproject.toml file. There may be other causes: poetry complains about pep-517 compliance. reverted some of my own commits so that this only alters pyproject.toml and leaves the versioner changes to the CI/CD (if that's how things work). there were build failures because of changes made by versioneer (and I don't have pre-commit hooks set up that match the CI expectations).

The published version claims 3.1.0, so the next valid semantic version is 3.1.1

sjswerdloff commented 11 months ago

@JoostJM do you think I'm on the right track with this, or is there a lot more involved in the versioning and meta-data?