Details
Description
> Steps to reproduce:
pip install couchbase
> Expected output:
Downloading/unpacking couchbase
Downloading couchbase-0.7.0.tar.gz
Running setup.py egg_info for package couchbase
> Actual output:
Downloading/unpacking couchbase
Downloading couchbase-0.7.0.tar.gz
Running setup.py egg_info for package couchbase
fatal: Not a git repository (or any of the parent directories): .git
> Tip:
def get_version():
try:
p = subprocess.Popen('git describe', stdout=subprocess.PIPE,
shell=True)
version = p.communicate()[0].strip()
except:
version = ''
return version
pip install couchbase
> Expected output:
Downloading/unpacking couchbase
Downloading couchbase-0.7.0.tar.gz
Running setup.py egg_info for package couchbase
> Actual output:
Downloading/unpacking couchbase
Downloading couchbase-0.7.0.tar.gz
Running setup.py egg_info for package couchbase
fatal: Not a git repository (or any of the parent directories): .git
> Tip:
def get_version():
try:
p = subprocess.Popen('git describe', stdout=subprocess.PIPE,
shell=True)
version = p.communicate()[0].strip()
except:
version = ''
return version
Activity
Pavel Paulau
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Priority | Minor [ 4 ] | Major [ 3 ] |
Benjamin Young
made changes -
| Status | Open [ 1 ] | In Progress [ 3 ] |
Benjamin Young
made changes -
| Status | In Progress [ 3 ] | Resolved [ 5 ] |
| Fix Version/s | 0.7.1 [ 10365 ] | |
| Resolution | Fixed [ 1 ] |