Skip to content

Commit b0f1720

Browse files
Specify lower bounds on dependencies (#30)
1 parent 01bec5b commit b0f1720

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[build-system]
2-
requires = ["flit_core >=3.3,<4"]
2+
requires = ["flit_core >=3.6,<4"]
33
build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "yaml2ics"
7-
version = "0.1rc1"
7+
version = "0.1rc2.dev0"
88
requires-python = ">=3.8"
9-
authors = [{name = "The Scientific Python Group"}]
9+
authors = [{name = "Scientific Python Developers"}]
1010
readme = "README.md"
1111
license = {file = "LICENSE"}
1212
classifiers = ["License :: OSI Approved :: BSD License"]
1313
dynamic = ["description"]
1414

1515
dependencies = [
1616
"ics @ git+https://github.com/ics-py/ics-py.git@133a0955f6efbb83ff0eae45ad0bbe6902a8f2f1#egg=ics",
17-
"python-dateutil",
18-
"pyyaml",
17+
"python-dateutil >= 2.8",
18+
"pyyaml >= 6",
1919
]
2020

2121
[project.optional-dependencies]
22-
test = ["pytest"]
23-
lint = ["pre-commit"]
22+
test = ["pytest >= 7"]
23+
lint = ["pre-commit >= 2.20"]
2424

2525
[project.scripts]
2626
yaml2ics = "yaml2ics:main"

0 commit comments

Comments
 (0)