Skip to content

Commit

Permalink
Specify version (ranges) for dependencies
Browse files Browse the repository at this point in the history
Atomicwrites and vobject are more or less abandoned and did not have a
release in a long time.  They are pinned to exact versions in case some
change upstream results in an unexpected release.

For the other packages I took a guess what a good version constraint
could be.  They are not thoroughly tested and I did not study the
release notes to check which version we need.
  • Loading branch information
lucc committed Jan 3, 2024
1 parent e782d1c commit e4a3f71
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ keywords = ["vcard", "console", "addressbook"]
license = {text = "GPL"}

dependencies = [
"atomicwrites",
"configobj",
"ruamel.yaml",
"unidecode",
"vobject"
"atomicwrites == 1.4.1",
"configobj == 5.*, >= 5.0.6",
"ruamel.yaml >= 0.17.0",
"unidecode ~= 1.3.0",
"vobject == 0.9.6.1",
]

[project.optional-dependencies]
Expand Down

0 comments on commit e4a3f71

Please sign in to comment.