Skip to content

Commit

Permalink
ignore deprecation warnings from updated packages (#403)
Browse files Browse the repository at this point in the history
* ignore deprecation warnings from updated packages

* update requirements constraints to prevent upgrade to josepy 2.x
  • Loading branch information
markdboyd authored Nov 19, 2024
1 parent 02b3fb8 commit 2641a53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pip-tools/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Flask-Migrate
Flask-SQLAlchemy>3
flask
sqlalchemy
# Josepy 2+ may introduce backward incompatible changes by droping usage of
# deprecated PyOpenSSL APIs.
josepy<2
acme
boto3
cfenv
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ ignore_patterns = ["venv/*", ".venv/*"]
addopts = ["-vv"]
filterwarnings = [
'error',
'ignore:X509Extension support in pyOpenSSL is deprecated. You should use the APIs in cryptography.:DeprecationWarning'
'ignore:X509Extension support in pyOpenSSL is deprecated. You should use the APIs in cryptography.:DeprecationWarning',
'ignore:CSR support in pyOpenSSL is deprecated:DeprecationWarning'
]

0 comments on commit 2641a53

Please sign in to comment.