Skip to content

Commit 3e9bece

Browse files
committed
v1.3.1 - add pymongo, pyyaml, requests to install_requires; fixes #5
1 parent 6fe2f1a commit 3e9bece

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,5 @@ endif
5252
publish upload: test clean build check
5353
twine upload dist/*
5454

55+
.PHONY: deploy
56+
deploy: release publish

s3recon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.3.0"
1+
__version__ = "1.3.1"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def open_local(paths, mode="r", encoding="utf8"):
1414
with open_local(["README.md"]) as f:
1515
long_description = f.read()
1616

17-
install_requires = ["mergedeep>=1.0"]
17+
install_requires = ["mergedeep>=1.1", "requests>=2.23", "pymongo>=3.10", "pyyaml>=5.3"]
1818

1919
setuptools.setup(
2020
name="s3recon",
@@ -34,6 +34,7 @@ def open_local(paths, mode="r", encoding="utf8"):
3434
"Programming Language :: Python :: 3",
3535
"Programming Language :: Python :: 3.6",
3636
"Programming Language :: Python :: 3.7",
37+
"Programming Language :: Python :: 3.8",
3738
"License :: OSI Approved :: MIT License",
3839
"Operating System :: OS Independent",
3940
),

0 commit comments

Comments
 (0)