File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
"""
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.
3
3
"""
4
4
5
5
import os
6
6
import sys
7
+ from textwrap import dedent
7
8
8
9
populate_tox_dir = os .path .join (
9
10
os .path .dirname (os .path .abspath (__file__ )), "populate_tox"
@@ -38,10 +39,12 @@ def update():
38
39
print ()
39
40
print ("Effective minimal versions:" )
40
41
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
+ """ )
45
48
)
46
49
print ()
47
50
for integration , min_version in min_versions :
You can’t perform that action at this time.
0 commit comments