semantic-versioning

Labelling error during version comparison

Labelling error during version comparison Question: I have a dataframe that looks like this: api_spec_id commit_date info_version label 500 2020-07-22 1.1 500 2020-11-09 1.1 500 2020-11-16 1.1 500 2020-11-16 1.1 500 2020-11-23 1.1 500 2021-02-01 1.1 138641 2020-06-25 0.1.0 major 138641 2020-06-25 0.1.0 138641 2020-06-27 0.1.0 138641 2020-06-27 0.1.9 patch 138641 2020-06-27 0.1.10 patch 138641 …

Total answers: 1

Specify dependency version >= for git repository in pyproject.toml

Specify dependency version >= for git repository in pyproject.toml Question: I have a python project with all dependencies and versions managed by pyproject.toml file. One of these dependencies is a git reference: [project] name = ‘my_package’ version = ‘1.0.0’ dependencies = [ ‘my_dependency @ git+https://github.com/some_user/some_repo.git’ ] In order to improve version management after some time …

Total answers: 1

Should I pin my Python dependencies versions?

Should I pin my Python dependencies versions? Question: I am about to release a Python library I’ve been working on the past few weeks. I’ve read a lot about Python dependencies but something is not quite clear yet: Some people pretend you should never pin your dependencies versions as it would prevent the users of …

Total answers: 3