Skip to content

Commit

Permalink
Dependency update - 0.0.3 (#4)
Browse files Browse the repository at this point in the history
* Update dependencies.

* Bumped version number.

* Fixed requirements.txt issues
  • Loading branch information
Dextroz committed Apr 20, 2019
1 parent 521af78 commit 645b06a
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
42 changes: 21 additions & 21 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
appdirs==1.4.3
attrs==18.2.0
black==18.9b0
attrs==19.1.0
black==19.3b0
bleach==3.1.0
certifi==2018.11.29
certifi==2019.3.9
chardet==3.0.4
Click==7.0
docutils==0.14
Expand All @@ -15,6 +15,6 @@ requests-toolbelt==0.9.1
six==1.12.0
toml==0.10.0
tqdm==4.31.1
twine==1.12.1
urllib3==1.24.1
twine==1.13.0
urllib3==1.24.2
webencodings==0.5.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="virustotal-python",
version="0.0.2",
version="0.0.3",
author="Dextroz",
author_email="[email protected]",
description="A light wrapper around the public VirusTotal API.",
Expand Down
2 changes: 1 addition & 1 deletion virustotal_python/virustotal.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Virustotal(object):
def __init__(self, API_KEY=None):
self.API_KEY = API_KEY
self.BASEURL = "https://www.virustotal.com/vtapi/v2/"
self.VERSION = "0.0.2"
self.VERSION = "0.0.3"
self.headers = {
"Accept-Encoding": "gzip, deflate",
"User-Agent": f"gzip, virustotal-python {self.VERSION}",
Expand Down

0 comments on commit 645b06a

Please sign in to comment.