Skip to content

Commit

Permalink
build: fix release publing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
altor committed Sep 23, 2019
1 parent 36db87e commit 608f6ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,6 @@ jobs:
steps:
- checkout

- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip3 install -e "."
- run:
name: check git tag with package version
command: |
Expand Down
7 changes: 6 additions & 1 deletion pyRAPL/pyRAPL.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
import psutil
import logging
try:
import psutil
except ImportError:
logging.getLogger().info("psutil is not installed.")


from enum import Enum

Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ packages = find:
test_suite = tests
setup_requires =
pytest-runner >=3.9.2
psutil >=5.0.0
install_requires =
psutil >=5.0.0
tests_require =
Expand Down

0 comments on commit 608f6ae

Please sign in to comment.