File tree Expand file tree Collapse file tree 2 files changed +3
-16
lines changed Expand file tree Collapse file tree 2 files changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -66,13 +66,13 @@ endif
66
66
@$(PROJDIR)/build/publish $(VERSION)
67
67
68
68
.PHONY : release
69
- release : release_sdist
69
+ release : # release_sdist
70
70
ifeq ($(RELEASE_GPG_KEYNAME ) ,)
71
71
$(error RELEASE_GPG_KEYNAME must be set to build a release and deploy this package)
72
72
endif
73
73
@echo "==> pypi repository: $(PYPI_REPOSITORY)"
74
74
@echo "==> Python 2.7 (bdist_egg)"
75
- @python2.7 setup.py build --build-base=py-build/2.7 bdist_egg upload --repository $(PYPI_REPOSITORY) --show-response --sign --identity $(RELEASE_GPG_KEYNAME)
75
+ # @python2.7 setup.py build --build-base=py-build/2.7 bdist_egg upload --repository $(PYPI_REPOSITORY) --show-response --sign --identity $(RELEASE_GPG_KEYNAME)
76
76
@echo "==> Python 3.3 (bdist_egg)"
77
77
@python3.3 setup.py build --build-base=py-build/3.3 bdist_egg upload --repository $(PYPI_REPOSITORY) --show-response --sign --identity $(RELEASE_GPG_KEYNAME)
78
78
@echo "==> Python 3.4 (bdist_egg)"
Original file line number Diff line number Diff line change 26
26
27
27
(cd $PYENV_ROOT && git checkout $( git describe --tags $( git rev-list --tags --max-count=1) ) )
28
28
29
- declare -r pyenv_virtualenv_dir=" $PYENV_ROOT /plugins/pyenv-virtualenv"
30
- if [[ ! -d $pyenv_virtualenv_dir ]]
31
- then
32
- git clone ' https://github.com/yyuu/pyenv-virtualenv.git' $pyenv_virtualenv_dir
33
- else
34
- (cd $pyenv_virtualenv_dir && git fetch --all)
35
- fi
36
-
37
- (cd $pyenv_virtualenv_dir && git checkout $( git describe --tags $( git rev-list --tags --max-count=1) ) )
38
-
39
29
declare -r pyenv_alias_dir=" $PYENV_ROOT /plugins/pyenv-alias"
40
30
if [[ ! -d $pyenv_alias_dir ]]
41
31
then
@@ -56,7 +46,6 @@ if [[ $(type -t pyenv) != 'function' ]]
56
46
then
57
47
echo " [INFO] init pyenv"
58
48
eval " $( pyenv init -) "
59
- eval " $( pyenv virtualenv-init -) "
60
49
fi
61
50
62
51
do_pip_upgrades=' false'
76
65
77
66
echo " [INFO] installing Python $pyver_latest "
78
67
VERSION_ALIAS=" $riak_py_alias " pyenv install " $pyver_latest "
79
- pyenv virtualenv " $riak_py_alias " " riak-py$pymaj$pymin "
80
68
fi
81
69
done
82
70
87
75
88
76
echo " [INFO] installing Python 2.7.8"
89
77
VERSION_ALIAS=' riak_2.7.8' pyenv install ' 2.7.8'
90
- pyenv virtualenv ' riak_2.7.8' ' riak-py278'
91
78
fi
92
79
93
80
pushd $PROJDIR
94
- pyenv local riak-py35 riak-py34 riak-py33 riak-py27 riak-py278
81
+ pyenv local ' riak_3.5 ' ' riak_3.4 ' ' riak_3.3 ' ' riak_2.7 ' ' riak_2.7.8 '
95
82
96
83
pyenv rehash
97
84
You can’t perform that action at this time.
0 commit comments