Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 34d4200

Browse files
committed
bump kclpy version: fix downloads of JARs in kclpy
1 parent 3df4552 commit 34d4200

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

‎Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,7 @@ usage: ## Show this help
88
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
99

1010
install: ## Install npm/pip dependencies, compile code
11-
make install-pypi
12-
13-
install-pypi:
1411
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)
1812
make compile
1913

2014
setup-venv:

‎requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
airspeed==0.5.5.dev20160812
2-
amazon_kclpy==1.4.0
2+
amazon_kclpy==1.4.1
33
boto3==1.4.0
44
coverage==4.0.3
55
docopt==0.6.2

‎setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def do_make_install(workdir=None):
3535
prev_workdir = os.getcwd()
3636
os.chdir(workdir)
3737
try:
38-
out = subprocess.check_output('make install-pypi', shell=True)
38+
out = subprocess.check_output('make install', shell=True)
3939
except subprocess.CalledProcessError as e:
4040
print e.output
4141
raise e
@@ -76,7 +76,7 @@ def run(self):
7676

7777
setup(
7878
name='localstack',
79-
version='0.1.9',
79+
version='0.1.10',
8080
description='Provides an easy-to-use test/mocking framework for developing Cloud applications',
8181
author='Waldemar Hummer (Atlassian)',
8282
author_email='[email protected]',

0 commit comments

Comments
 (0)