mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
Build warnings are unfortunately very common in third-party packages. They’re difficult to reliably detect since packages don’t always build from source, and they can’t be whitelisted on a per-package basis since they’re all attributed to setuptools or an anonymous code string. Signed-off-by: Anders Kaseorg <anders@zulip.com>
52 lines
2.8 KiB
Bash
52 lines
2.8 KiB
Bash
# shellcheck shell=bash
|
|
|
|
export PYTHONWARNINGS=error
|
|
|
|
PYTHONWARNINGS+=',ignore::ResourceWarning'
|
|
|
|
# https://github.com/disqus/django-bitfield/pull/135
|
|
PYTHONWARNINGS+=',default:Attribute s is deprecated and will be removed in Python 3.14; use value instead:DeprecationWarning:__main__'
|
|
|
|
# https://github.com/boto/botocore/pull/3239
|
|
PYTHONWARNINGS+=',ignore:datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version.:DeprecationWarning:botocore.auth'
|
|
|
|
# https://bugs.launchpad.net/beautifulsoup/+bug/2076897
|
|
PYTHONWARNINGS+=',ignore:The '\''strip_cdata'\'' option of HTMLParser() has never done anything and will eventually be removed.:DeprecationWarning:bs4.builder._lxml'
|
|
|
|
# https://github.com/fabfuel/circuitbreaker/pull/63
|
|
PYTHONWARNINGS+=',ignore:datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version.:DeprecationWarning:circuitbreaker'
|
|
|
|
# https://github.com/mahmoud/glom/pull/258
|
|
PYTHONWARNINGS+=',ignore:invalid escape sequence '\'\\' '\'':DeprecationWarning'
|
|
PYTHONWARNINGS+=',ignore:invalid escape sequence '\'\\' '\'':SyntaxWarning'
|
|
|
|
# This gets triggered due to our do_patch_activate_script
|
|
PYTHONWARNINGS+=',default:Attempting to work in a virtualenv.:UserWarning:IPython.core.interactiveshell'
|
|
|
|
# https://github.com/SAML-Toolkits/python3-saml/pull/420
|
|
PYTHONWARNINGS+=',ignore:datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version.:DeprecationWarning:onelogin.saml2.utils'
|
|
PYTHONWARNINGS+=',ignore:datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version.:DeprecationWarning:onelogin.saml2.utils'
|
|
|
|
# https://github.com/python-openapi/openapi-core/issues/931
|
|
PYTHONWARNINGS+=',ignore::DeprecationWarning:openapi_core.validation.request.validators'
|
|
|
|
# https://github.com/seb-m/pyinotify/issues/204
|
|
PYTHONWARNINGS+=',ignore:The asyncore module is deprecated and will be removed in Python 3.12.:DeprecationWarning:pyinotify'
|
|
|
|
# Semgrep still supports Python 3.8
|
|
PYTHONWARNINGS+=',ignore:path is deprecated.:DeprecationWarning:semgrep.semgrep_core'
|
|
|
|
# https://github.com/scrapy/scrapy/issues/3288
|
|
PYTHONWARNINGS+=',ignore:Passing method to twisted.internet.ssl.CertificateOptions was deprecated in Twisted 17.1.0.:DeprecationWarning:scrapy.core.downloader.contextfactory'
|
|
|
|
# https://github.com/scrapy/scrapy/issues/6450
|
|
PYTHONWARNINGS+=',ignore:twisted.web.http.HTTPClient was deprecated in Twisted 24.7.0:DeprecationWarning:scrapy.core.downloader.webclient'
|
|
|
|
# https://github.com/adamchainz/time-machine/pull/486
|
|
PYTHONWARNINGS+=',ignore:datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version.:DeprecationWarning:time_machine'
|
|
|
|
# https://github.com/zulip/python-zulip-api/pull/833
|
|
PYTHONWARNINGS+=',default:distro.linux_distribution() is deprecated.:DeprecationWarning:zulip'
|
|
|
|
export SQLALCHEMY_WARN_20=1
|