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
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2020-01-24 16:13:58 +0300
committerAdrien Ferrand <adferrand@users.noreply.github.com>2020-01-24 16:13:58 +0300
commit2f24726d4cd8fa9b6c58cf8e80876082c960ab73 (patch)
treee222db5aea40a067de4fe449cc3c555b64dcf061 /pytest.ini
parent5f315b46e9a4c2a79d15753969c4fbdf89f7f34b (diff)
Fix collections.abc imports for Python 3.9 (#7707)
* Fix collections.abc imports for Python 3.9 * Update AUTHORS.md * No longer ignore collections.abc deprecation warning * Update changelog * Remove outdated comment * Disabling no-name-in-module not needed as linting is on Python 3
Diffstat (limited to 'pytest.ini')
-rw-r--r--pytest.ini4
1 files changed, 0 insertions, 4 deletions
diff --git a/pytest.ini b/pytest.ini
index 019676292..e09813e52 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -4,10 +4,6 @@
[pytest]
# In general, all warnings are treated as errors. Here are the exceptions:
# 1- decodestring: https://github.com/rthalley/dnspython/issues/338
-# 2- ignore warn for importing abstract classes from collections instead of collections.abc,
-# too much third party dependencies are still relying on this behavior,
-# but it should be corrected to allow Certbot compatibility with Python >= 3.8
filterwarnings =
error
ignore:decodestring:DeprecationWarning
- ignore:.*collections\.abc:DeprecationWarning