Skip to content

Commit a5ead37

Browse files
committed
remove print statement
1 parent 2e72009 commit a5ead37

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</p>
66

77
<a href="https://pypi.python.org/pypi/pythonloc/">
8-
<img src="https://img.shields.io/badge/pypi-0.1.1.0-blue.svg" /></a>
8+
<img src="https://img.shields.io/badge/pypi-0.1.1.1-blue.svg" /></a>
99

1010
**pythonloc** is a drop in replacement for `python` and `pip` that automatically recognizes a `__pypackages__` directory and prefers importing packages installed in this location over user or global site-packages. If you are familiar with node, `__pypackages__` works similarly to `node_modules`.
1111

makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ publish: build
88
python3 -m twine upload dist/*
99

1010
clean:
11-
rm -r build dist
11+
rm -r build dist || true

pythonloc/pythonloc.py

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def get_pypackages_lib_path(script_path=None):
1414
if script_path:
1515
# use __pypackages__ relative to the script being run
1616
pypackages = os.path.join(os.path.dirname(script_path), "__pypackages__")
17-
print(pypackages)
1817
else:
1918
pypackages = "__pypackages__"
2019

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name="pythonloc",
26-
version="0.1.1.0",
26+
version="0.1.1.1",
2727
author="Chad Smith",
2828
author_email="[email protected]",
2929
description="Run Python using packages from local directory __pypackages__",

0 commit comments

Comments
 (0)