Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
iamogbz committed Feb 10, 2022
2 parents 76f44af + eabe341 commit cd6ec42
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
name: deploy library
command: |
. venv/bin/activate
pip install --upgrade setuptools wheel twine
pip install --upgrade pip setuptools wheel twine
python setup.py sdist bdist_wheel
twine upload dist/*
workflows:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# ide
.idea
.vscode

# test
/coverage
Expand Down
2 changes: 1 addition & 1 deletion python_githooks/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
execute_git_hook,
)

__BASE_DIR__ = os.environ["PWD"]
__BASE_DIR__ = os.getcwd()
__GITHOOKS_BASE_DIR__ = os.path.join(__BASE_DIR__, GITHOOKS_RELATIVE_DIR)
__GITHOOKS_CONFIGFILE_PATH__ = os.path.join(__BASE_DIR__, CONFIG_FILENAME)

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ pytest==7.0.0
pytest-cov==3.0.0
pytest-mock==3.6.1
six==1.16.0
cryptography==3.3.2

0 comments on commit cd6ec42

Please sign in to comment.