-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade dependencies + minor fixes (#19)
* Upgrade minimum datadog version + minor fixes * explicitly declare dep on setuptools and fix shebang
- Loading branch information
1 parent
6bfec55
commit a579f30
Showing
5 changed files
with
17 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,7 +87,7 @@ Example Graphs | |
``` | ||
git clone [email protected]:eero-inc/garbagedog.git | ||
cd garbagedog | ||
virtualenv --python=python3 ENV | ||
python3 -m venv ENV | ||
source ENV/bin/activate | ||
pip install -e . | ||
``` | ||
|
@@ -97,7 +97,7 @@ pip install -e . | |
``` | ||
git clone [email protected]:eero-inc/garbagedog.git | ||
cd garbagedog | ||
virtualenv --python=python3 ENV | ||
python3 -m venv ENV | ||
source ENV/bin/activate | ||
pip install -r dev_requirements.txt | ||
|
@@ -110,12 +110,13 @@ On your targeted environment check out the source and build | |
``` | ||
git clone [email protected]:eero-inc/garbagedog.git | ||
cd garbagedog | ||
virtualenv --python=python3 ENV | ||
python3 -m venv ENV | ||
source ENV/bin/activate | ||
pip install pex | ||
./build.sh | ||
``` | ||
|
||
## About | ||
Made for [eero](https://eero.com/) Hack Week 2017 - ps we're hiring! https://eero.com/jobs | ||
|
||
Not related to the retired RedHat project also called garbagedog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ mock | |
mypy | ||
pycodestyle | ||
pytest | ||
pex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='garbagedog', | ||
version='0.0.12', | ||
version='0.0.14', | ||
description='Parse JVM gc.logs and emit stats over dogstatsd', | ||
author='Will Bertelsen', | ||
author_email='[email protected]', | ||
|
@@ -14,7 +14,8 @@ | |
], | ||
python_requires='>=3.4', | ||
install_requires=[ | ||
'datadog', | ||
'datadog>=0.26.0', | ||
'typing', | ||
'setuptools>=40.8.0' | ||
], | ||
) |