Skip to content

Commit

Permalink
Merge pull request #343 from enthought/maint/backport-342
Browse files Browse the repository at this point in the history
Backport #342 to maint/4.6
  • Loading branch information
jvkersch authored Mar 31, 2017
2 parents 349ed62 + 56886d1 commit 1594141
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release 4.6.1

Fixes

* Copy over HOME value to git environment. (PR#342)
* Fix issue with setup.py that prevent correct versioning on non-git checkouts.
(PR#337)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def git_version():
def _minimal_ext_cmd(cmd):
# construct minimal environment
env = {}
for k in ['SYSTEMROOT', 'PATH']:
for k in ['SYSTEMROOT', 'PATH', 'HOME']:
v = os.environ.get(k)
if v is not None:
env[k] = v
Expand Down

0 comments on commit 1594141

Please sign in to comment.