File tree 4 files changed +12
-11
lines changed
4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : ubuntu-latest
6
6
strategy :
7
7
matrix :
8
- python-version : [3.6, 3. 7, 3.8]
8
+ python-version : [3.7, 3.8]
9
9
services :
10
10
redis :
11
11
image : redis
Original file line number Diff line number Diff line change 1
- version-2.11 .md
1
+ version-2.12 .md
Original file line number Diff line number Diff line change
1
+ # NetBox v2.12
2
+
3
+ ## v2.12-beta1 (FUTURE)
4
+
5
+ ### Other Changes
6
+
7
+ * [ #5532 ] ( https://github.com/netbox-community/netbox/issues/5532 ) - Drop support for Python 3.6
Original file line number Diff line number Diff line change 16
16
# Environment setup
17
17
#
18
18
19
- VERSION = '2.11.1 '
19
+ VERSION = '2.12-beta1 '
20
20
21
21
# Hostname
22
22
HOSTNAME = platform .node ()
25
25
BASE_DIR = os .path .dirname (os .path .dirname (os .path .abspath (__file__ )))
26
26
27
27
# Validate Python version
28
- if platform .python_version_tuple () < ('3' , '6' ):
29
- raise RuntimeError (
30
- "NetBox requires Python 3.6 or higher (current: Python {})" .format (platform .python_version ())
31
- )
32
- # TODO: Remove in NetBox v2.12
33
28
if platform .python_version_tuple () < ('3' , '7' ):
34
- warnings .warn (
35
- "Support for Python 3.6 will be dropped in NetBox v2.12. Please upgrade to Python 3.7 or later at your "
36
- "earliest convenience."
29
+ raise RuntimeError (
30
+ f"NetBox requires Python 3.7 or higher (current: Python { platform .python_version ()} )"
37
31
)
38
32
39
33
You can’t perform that action at this time.
0 commit comments