Skip to content

Commit ed61a07

Browse files
authored
Relax constraints on dependencies. Avoid using typing hints from PyMuPDF (#138)
1 parent b2d5c9f commit ed61a07

4 files changed

Lines changed: 68 additions & 355 deletions

File tree

poetry.lock

Lines changed: 57 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
[tool.poetry]
22
name = "cmdict"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "A command line dictionary toolset."
55
authors = ["zequnyu <zequnyu11@gmail.com>", "edxu96 <edxu96@outlook.com>"]
66
license = "GPL-3.0"
77
exclude = ["src/cmdict/data/*"]
88
readme = "README.md"
9-
repository = "https://github.com/pasty-dev/cmdict"
9+
repository = "https://github.com/pastydev/cmdict"
1010

1111
[tool.poetry.scripts]
1212
cmdict = 'cmdict:run_script.cli'
1313
cmdicts = 'cmdict:run_script.search'
1414

1515
[tool.poetry.dependencies]
16-
python = "^3.7.0"
17-
loguru = "^0.5.1"
18-
click = "^7.1.2"
19-
colorama = "^0.4.3"
20-
requests = "^2.24.0"
21-
tqdm = "^4.48.0"
22-
pyyaml = "^5.3.1"
16+
python = ">=3.7.0"
17+
loguru = ">=0.5.1"
18+
click = ">=7.1.2"
19+
colorama = ">=0.4.3"
20+
requests = ">=2.24.0"
21+
tqdm = ">=4.48.0"
22+
pyyaml = ">=5.3.1"
2323

2424
[tool.poetry.group.pdf]
2525
optional = true

0 commit comments

Comments
 (0)