Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-06Remove python_version setting from mypy.ini (#8426)Brad Warren
* Remove python_version from mypy.ini. * Fix magic_typing * Ignore msvcrt usage. * make mypy happier * clean up changes * Add type for reporter queue * More mypy fixes * Fix pyrfc3339 str. * Remove unused import. * Make certbot.util mypy work in both Pythons * Fix typo
2020-02-15Remove letshelp-certbot (#7761)Brad Warren
* remove references to letshelp * remove letshelp files * Remove line continuation Co-authored-by: ohemorange <ebportnoy@gmail.com>
2018-05-22Get mypy passing with check_untyped_defs everywhere (#6021)Brad Warren
* unchecked_typed_defs everywhere * fix mypy for lock_test * add magic_typing * fix mypy in letshelp * fix validator errors in compat test * fix mypy for test_driver.py * fix mypy in util.py * delint
2018-05-18Prepare certbot module for mypy check untyped defs (#6005)Dmitry Figol
* Prepare certbot module for mypy check untyped defs * Fix #5952 * Bump mypy to version 0.600 and fix associated bugs * Fix pylint bugs after introducing mypy * Implement Brad's suggestions * Reenabling pylint and adding nginx mypy back
2018-05-18Add remaining DNS plugins to mypy.ini and sort (#6018)Brad Warren
2018-05-15fixed issue #5974 for certbot-dns-route53 (#5984)GmH
* fixed issue #5974 for certbot-dns-route53 * fixed issue #5967 for certbot-dns-digitalocean * update to use acme.magic_typing and DefaultDict class * added no-name-in-module identifier, for issue #5974 * added unused-import identifier to disable option, for issue #5974
2018-05-15Issue 5951/check untyped defs apache (#5989)dschlessman
* resolved mypy untyped defs in parser.py * resolved mypy untyped defs in obj.py * removed unused imports * resolved mypy untyped defs in http_01.py * resolved mypy untyped defs in tls_sni_01.py * resolved mypy untyped defs in configurator.py * address mypy too-many-arguments error in override_centos.py * resolved mypy untyped defs in http_01_test.py * removed unused 'conf' argument that was causing mypy method assignment error * address mypy error where same variable reassigned to different type * address pylint and coverage issues * one character space change for formatting * fix required acme version for certbot-apache
2018-05-15Enable checking of type annotation in Nginx plugin (#5997)James Hiebert
* Adds type checking for certbot-nginx * First pass at type annotation in certbot-nginx * Ensure linting is disabled for timing imports * Makes container types specific per PR comments * Removes unnecessary lint option
2018-05-14Check_untyped_defs in mypy with clean output for certbot-dns-nsone (#5987)Douglas Anger
* check_untyped_defs in mypy with clean output for certbot-dns-nsone Resolves #5972
2018-05-14Merge branch 'issue_5968' into handle-mypy-ini-conflictsBrad Warren
2018-05-14Merge branch 'feature/5971' into handle-mypy-ini-conflictsBrad Warren
2018-05-14Merge branch 'issue_5970' into handle-mypy-ini-conflictsBrad Warren
2018-05-14fixed issue #5969 for certbot-dns-dnsmadeeasy (#5976)Sarah Braden
2018-05-14blank line at eofSarah Braden
2018-05-14fix for issue #5968 for certbot-dns-dnsimpleSarah Braden
2018-05-14Check_untyped_defs in mypy with clean output for certbot-dns-luadnsDouglas Anger
* check_untyped_defs in mypy with clean output for certbot-dns-luadns Resolves #5971
2018-05-14fix for issue #5970 regarding certbot-dns-googleSarah Braden
2018-05-14Check_untyped_defs in mypy with clean output for certbot_dns_rfc2136 (#5975)Douglas Anger
* check_untyped_defs in mypy with clean output for certbot_dns_rfc2136 Resolves #5973
2018-05-14fixed issue #5969 for certbot-dns-dnsmadeeasySarah Braden
2018-05-03Check_untyped_defs in mypy with clean output for acme (#5874)ohemorange
* check_untyped_defs in mypy with clean output for acme * test entire acme module * Add typing as a dependency because it's only in the stdlib for 3.5+ * Add str_utils, modified for python2.7 compatibility * make mypy happy in acme * typing is needed in prod * we actually only need typing in acme so far * add tests and more docs for str_utils * pragma no cover * add magic_typing * s/from typing/from magic_typing/g * move typing to dev_extras * correctly set up imports * remove str_utils * only type: ignore for OpenSSL.SSL, not crypto * Since we only run mypy with python3 anyway and we're fine importing it when it's not actually there, there's no actual need for typing to be present as a dependency * comment magic_typing.py * disable wildcard-import im magic_typing * disable pylint errors * add magic_typing_test * make magic_typing tests work alongside other tests * make sure temp_typing is set * add typing as a dev dependency for python3.4 * run mypy with python3.4 on travis to get a little more testing with different environments * don't stick typing into sys.modules * reorder imports
2018-04-13 Get mypy running with clean output (#5864)ohemorange
Fixes #5849. * extract mypy flags into mypy.ini file * Get mypy running with clean output