-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pin flask version and dependencies #510
Conversation
@@ -14,11 +14,10 @@ def install(self): | |||
build_dir = self.get_build_dir(arch.arch) | |||
hostpython = sh.Command(self.ctx.hostpython) | |||
build_env = arch.get_env() | |||
dest_dir = join(self.ctx.dist_dir, "root", "python") | |||
dest_dir = join(self.ctx.dist_dir, "root", "python3") | |||
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages') | |||
cmd = sh.Command("sed") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wish the linter could post that comment on the exact line for us
kivy_ios/recipes/itsdangerous/__init__.py:19:9: F841 local variable 'cmd' is assigned to but never used
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice. But, I should just rum the pep8 checker locally I suppose... Not in that habit on this repo yet. Should add it as a hook...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also often don't run it locally because we think changes are trivial, but it's easy to forget something or make typos. That's why we have CI to gently remind us :D
For reference, as a command run now.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sweet, thanks!
Maybe splitting up the PR we have more chance of seeing the CI passing for some of them |
No description provided.