Skip to content

Commit ed6a7fa

Browse files
committed
Use ranges for direct dependencies
It doesn't make sense to pin these as it will force the upstream package to keep these dependencies in sync.
1 parent 56e3d13 commit ed6a7fa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
package_data={"xocto": ["py.typed"]},
3232
zip_safe=False,
3333
install_requires=[
34-
"pytz==2022.1",
35-
"django==3.2.13",
36-
"structlog==20.2.0",
37-
"python-dateutil==2.8.2",
34+
"pytz",
35+
"django>=3.2,<4.0",
36+
"structlog>=20.2.0",
37+
"python-dateutil>=2.8.2",
3838
],
3939
extras_require={
4040
"dev": ["wheel==0.37.1", "twine==4.0.0", "black==22.3.0", "isort==5.10.1"],

0 commit comments

Comments
 (0)