Skip to content

Commit

Permalink
Pin versions explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
servilla committed Aug 31, 2021
1 parent e023109 commit 553e935
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ package_dir =
=src
packages = find:
include_package_data = True
python_requires = "=3.8"
python_requires = >=3.8
install_requires =
click="7.1.2"
daiquiri="3.0.0"
lxml="4.6.2"
rfc3986="1.4.0"
click==7.1.2
daiquiri==3.0.0
lxml==4.6.2
rfc3986==1.4.0

[options.packages.find]
where = src
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
packages=find_packages(where="src", include=["metapype", "metapype.eml", "metapype.model"]),
package_dir={"": "src"},
include_package_data=True,
python_requires=" = 3.8.*",
install_requires=["click=7.1.2", "daiquiri=3.0.0", "lxml=4.6.2", "rfc3986=1.4.0"],
python_requires=" == 3.8.*",
install_requires=["click==7.1.2", "daiquiri==3.0.0", "lxml==4.6.2", "rfc3986==1.4.0"],
classifiers=["License :: OSI Approved :: Apache Software License",],
)

Expand Down

0 comments on commit 553e935

Please sign in to comment.