1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #14638: Drop support for Python 3.8 and 3.9

This commit is contained in:
Jeremy Stretch
2024-01-03 12:26:53 -05:00
parent cd7d038fc0
commit 7bedf48a97
8 changed files with 18 additions and 21 deletions

View File

@@ -1,9 +1,5 @@
from decimal import Decimal
try:
from zoneinfo import ZoneInfo
except ImportError:
# Python 3.8
from backports.zoneinfo import ZoneInfo
from zoneinfo import ZoneInfo
import yaml
from django.contrib.auth import get_user_model