Skip to content

Commit

Permalink
Avoid DRY violation
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Jan 6, 2025
1 parent d9c69d9 commit 91e73be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kivy_ios/recipes/hostpython3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def install(self):
self.ctx.dist_dir,
"hostpython3",
"lib",
"python3.11",
f"python{self.ctx.hostpython_ver}",
"site-packages",
"setuptools",
),
Expand All @@ -111,7 +111,7 @@ def install(self):
self.ctx.dist_dir,
"hostpython3",
"lib",
"python3.11",
f"python{self.ctx.hostpython_ver}",
"site-packages",
"setuptools",
),
Expand Down
2 changes: 1 addition & 1 deletion kivy_ios/toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def get_env(self):
"root",
"python3",
"include",
"python3.11",
f"python{self.ctx.hostpython_ver}",
)
)
]
Expand Down

0 comments on commit 91e73be

Please sign in to comment.