Skip to content

Commit

Permalink
Merge pull request #23 from demisto/fix-dep
Browse files Browse the repository at this point in the history
Fix missing dependency
  • Loading branch information
glicht authored Oct 12, 2019
2 parents 68e094b + 2fb0a4e commit 2224d88
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

[1]: https://pypi.org/project/demisto-py/#history

## 2.0.4
Fix missing dependency (tzlocal).

## 2.0.3
* Fix issue in `generic_request` where body was being ignored ([#20](https://github.com/demisto/demisto-py/issues/20)) .
* Add `content_type` and `accept` parameters to `generic_request`.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ except ApiException as e:

```

Additional examples available in the [docs](docs/README.md) and under the [examples folder](examples/).

## API Documentation
API Documentation based upon the Demisto Server Swagger API is available [here](docs/README.md)

Expand Down
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
certifi >= 14.05.14
# NOTE: any requirements added here should also be added to setup.py REQUIRES list
certifi >= 2017.4.17
six >= 1.10
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.15.1
urllib3 >= 1.23
tzlocal >= 2.0.0
# NOTE: any requirements added here should also be added to setup.py REQUIRES list
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@

REQUIRES = [
"certifi>=2017.4.17",
"python-dateutil>=2.1",
"python-dateutil>=2.5.3",
"six>=1.10",
"urllib3>=1.23"
"urllib3>=1.23",
"tzlocal>=2.0.0",
]

with open('README.md', 'r') as f:
Expand Down

0 comments on commit 2224d88

Please sign in to comment.