Konubinix' opinionated web of thoughts

Dependencies Handling in Python

Fleeting

Dependencies Handling in Python

[2021-02-24 Wed 07:42]

Libraries need to declare dependencies based on ranges of version numbers

[2021-02-24 Wed 07:42]

good reason for libraries to use Semantic Versioning whenever possible.

[2021-02-24 Wed 07:42]

abstract and concrete dependencies: abstract dependencies are based on ranges (e.g., libraries) whereas concrete dependencies are specified with precise versions (e.g., application deployments) — as we’ve just seen here.

[2021-02-24 Wed 07:43]

The requirements.txt file has been used to solve application deployment reproducibility