This website works better with JavaScript.
Home
Explore
Help
Sign In
isprogram
/
pyenv
mirror of
https://github.com/pyenv/pyenv.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
241
Wiki
Activity
Browse Source
v20151103
pull/471/head
v20151103
Yamashita, Yuu
10 years ago
parent
52544e6956
commit
0daf04a71b
3 changed files
with
8 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
CHANGELOG.md
+1
-1
libexec/pyenv---version
+1
-1
test/pyenv.bats
+ 6
- 0
CHANGELOG.md
View File
@ -1,5 +1,11 @@
## Version History
### 20151103
* python-build: Add PyPy 4.0.0 (#463)
* python-build: Add Jython 2.7.1b2
* python-build: Add warning about setuptools issues on CPython 3.0.1 on OS X (#456)
### 20151006
* pyenv: Different behaviour when invoking .py script through symlink (#379,
#404
)
+ 1
- 1
libexec/pyenv---version
View File
@ -12,7 +12,7 @@
set -e
[ -n "$PYENV_DEBUG" ] && set -x
version="20151
006
"
version="20151
103
"
if cd "$PYENV_ROOT" 2>/dev/null; then
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
+ 1
- 1
test/pyenv.bats
View File
@ -5,7 +5,7 @@ load test_helper
@test "blank invocation" {
run pyenv
assert_success
assert [ "${lines[0]}" == "pyenv 20151
006
" ]
assert [ "${lines[0]}" == "pyenv 20151
103
" ]
}
@test "invalid command" {
Write
Preview
Loading…
Cancel
Save