Skip to content

Commit df56328

Browse files
Zen-CODErichard
andauthored
🐛 Fix wekzeug recipe. closes #468 (#501)
Co-authored-by: richard <richard@dotmodus>
1 parent da89988 commit df56328

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

kivy_ios/recipes/click/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def install(self):
1717
hostpython = sh.Command(self.ctx.hostpython)
1818
build_env = arch.get_env()
1919
dest_dir = join(self.ctx.dist_dir, "root", "python")
20-
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.7', 'site-packages')
20+
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
2121
cmd = sh.Command("sed")
2222
shprint(cmd, "-i", "", "s/setuptools/distutils.core/g", "./setup.py", _env=build_env)
2323
shprint(hostpython, "setup.py", "install", "--prefix", dest_dir, _env=build_env)

kivy_ios/recipes/flask/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def install(self):
1717
hostpython = sh.Command(self.ctx.hostpython)
1818
build_env = arch.get_env()
1919
dest_dir = join(self.ctx.dist_dir, "root", "python")
20-
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.7', 'site-packages')
20+
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
2121
cmd = sh.Command("sed")
2222
shprint(cmd, "-i", "", "s/setuptools/distutils.core/g", "./setup.py", _env=build_env)
2323
shprint(hostpython, "setup.py", "install", "--prefix", dest_dir, _env=build_env)

kivy_ios/recipes/itsdangerous/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def install(self):
1515
hostpython = sh.Command(self.ctx.hostpython)
1616
build_env = arch.get_env()
1717
dest_dir = join(self.ctx.dist_dir, "root", "python")
18-
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.7', 'site-packages')
18+
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
1919
cmd = sh.Command("sed")
2020
with cd(build_dir):
2121
shprint(cmd, "-i", "", "s/setuptools/distutils.core/g", "./setup.py", _env=build_env)

kivy_ios/recipes/jinja2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def install(self):
1717
hostpython = sh.Command(self.ctx.hostpython)
1818
build_env = arch.get_env()
1919
dest_dir = join(self.ctx.dist_dir, "root", "python")
20-
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.7', 'site-packages')
20+
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
2121
cmd = sh.Command("sed")
2222
shprint(cmd, "-i", "", "s/setuptools/distutils.core/g", "./setup.py", _env=build_env)
2323
shprint(hostpython, "setup.py", "install", "--prefix", dest_dir, _env=build_env)

kivy_ios/recipes/markupsafe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def install(self):
1717
hostpython = sh.Command(self.ctx.hostpython)
1818
build_env = arch.get_env()
1919
dest_dir = join(self.ctx.dist_dir, "root", "python")
20-
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.7', 'site-packages')
20+
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
2121
cmd = sh.Command("sed")
2222
shprint(cmd, "-i", "", "s/,.*Feature//g", "./setup.py", _env=build_env)
2323
shprint(cmd, "-i", "", "s/setuptools/distutils.core/g", "./setup.py", _env=build_env)

kivy_ios/recipes/werkzeug/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def install(self):
1717
hostpython = sh.Command(self.ctx.hostpython)
1818
build_env = arch.get_env()
1919
dest_dir = join(self.ctx.dist_dir, "root", "python")
20-
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.7', 'site-packages')
20+
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
2121
shprint(hostpython, "setup.py", "install", "--prefix", dest_dir, _env=build_env)
2222

2323

0 commit comments

Comments
 (0)