Skip to content

Commit

Permalink
Fix requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Sep 10, 2021
1 parent f8656a1 commit 0c840d1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ repository, and the results are hosted on the
$ source conbench/bin/activate


### Clone repo
### Clone repository
(conbench) $ cd ~/workspace/
(conbench) $ git clone https://github.com/ursacomputing/conbench.git

Expand All @@ -83,7 +83,7 @@ repository, and the results are hosted on the
(conbench) $ pip install -r requirements-test.txt
(conbench) $ pip install -r requirements-build.txt
(conbench) $ pip install -r requirements-cli.txt
(conbench) $ python setup.py develop
(conbench) $ pip install -e .


### Start postgres
Expand Down Expand Up @@ -120,21 +120,21 @@ repository, and the results are hosted on the
(conbench) $ pytest -vv conbench/tests/


### Format code (before committing)
### Format code
(conbench) $ cd ~/workspace/conbench/
(conbench) $ black .
reformatted foo.py
(conbench) $ git add foo.py


### Sort imports (before committing)
### Sort imports
(conbench) $ cd ~/workspace/conbench/
(conbench) $ isort .
Fixing foo.py
(conbench) $ git add foo.py


### Lint code (before committing)
### Lint code
(qa) $ cd ~/workspace/conbench/
(qa) $ flake8
./foo/bar/__init__.py:1:1: F401 'FooBar' imported but unused
Expand Down
1 change: 1 addition & 0 deletions requirements-cli.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
click
numpy
psutil
py-cpuinfo
pytest
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="conbench",
version="1.20.0",
version="1.21.0",
description="Continuous Benchmarking (CB) Framework",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -29,6 +29,7 @@
"numpy",
"psutil",
"py-cpuinfo",
"pytest",
"PyYAML",
"requests",
],
Expand Down

0 comments on commit 0c840d1

Please sign in to comment.