File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,7 @@ usage: ## Show this help
8
8
@fgrep -h " ##" $(MAKEFILE_LIST ) | fgrep -v fgrep | sed -e ' s/\\$$//' | sed -e ' s/##//'
9
9
10
10
install : # # Install npm/pip dependencies, compile code
11
- make install-pypi
12
-
13
- install-pypi :
14
11
make setup-venv && make install-libs
15
- # re-install amazon_kclpy as it needs to re-download JAR files which are otherwise missing in the cached copy
16
- ($( VENV_RUN) ; pip uninstall -y amazon_kclpy)
17
- ($( VENV_RUN) ; cat requirements.txt | grep ' amazon_kclpy==' | xargs pip install --no-cache)
18
12
make compile
19
13
20
14
setup-venv :
Original file line number Diff line number Diff line change 1
1
airspeed == 0.5.5.dev20160812
2
- amazon_kclpy == 1.4.0
2
+ amazon_kclpy == 1.4.1
3
3
boto3 == 1.4.0
4
4
coverage == 4.0.3
5
5
docopt == 0.6.2
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def do_make_install(workdir=None):
35
35
prev_workdir = os .getcwd ()
36
36
os .chdir (workdir )
37
37
try :
38
- out = subprocess .check_output ('make install-pypi ' , shell = True )
38
+ out = subprocess .check_output ('make install' , shell = True )
39
39
except subprocess .CalledProcessError as e :
40
40
print e .output
41
41
raise e
@@ -76,7 +76,7 @@ def run(self):
76
76
77
77
setup (
78
78
name = 'localstack' ,
79
- version = '0.1.9 ' ,
79
+ version = '0.1.10 ' ,
80
80
description = 'Provides an easy-to-use test/mocking framework for developing Cloud applications' ,
81
81
author = 'Waldemar Hummer (Atlassian)' ,
82
82
You can’t perform that action at this time.
0 commit comments