Skip to content

Commit 817f592

Browse files
committed
.
1 parent a0e8850 commit 817f592

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

scripts/update_integration_support.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
"""
2-
Find out what the actual minimum supported version of each framework/library is.
2+
Small utility to determine the actual minimum supported version of each framework/library.
33
"""
44

55
import os
66
import sys
7+
from textwrap import dedent
78

89
populate_tox_dir = os.path.join(
910
os.path.dirname(os.path.abspath(__file__)), "populate_tox"
@@ -38,10 +39,12 @@ def update():
3839
print()
3940
print("Effective minimal versions:")
4041
print(
41-
"(The format is the same as _MIN_VERSIONS in sentry_sdk/integrations/__init__.py for easy replacing.)"
42-
)
43-
print(
44-
"(When updating these, make sure to also update the docs page for the integration.)"
42+
dedent("""
43+
- The format is the same as _MIN_VERSIONS in sentry_sdk/integrations/__init__.py for easy replacing.
44+
- When updating these, make sure to also update:
45+
- The docs page for the integration
46+
- The lower bounds in extras_require in setup.py
47+
""")
4548
)
4649
print()
4750
for integration, min_version in min_versions:

0 commit comments

Comments
 (0)