Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/pyopenssl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


class PyOpenSSLRecipe(PythonRecipe):
version = '0.14'
version = '16.0.0'
url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz'
depends = [('python2', 'python3crystax'), 'openssl', 'setuptools']
site_packages_name = 'OpenSSL'
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ ignore =
E123, E124, E126,
E226,
E402, E501, E722,
F812, F841, W503
F812, F841, W503,
W504

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For later reference; We ignored W504 because the rule of flake8==3.5.0 became the anti-pattern in flake8==3.6.0.

See https://github.com/LintlyCI/Flake8Rules/blob/ed09f9d/_rules/W503.md

Note: Despite being in the best practice section, this will soon be considered an anti-pattern.