From 43989f2dc3bd4b9e9e49be674ada551f2a8e6e34 Mon Sep 17 00:00:00 2001 From: Tim Hatch Date: Wed, 6 Dec 2023 16:35:07 -0800 Subject: [PATCH] Ill-advised change to make new mypy happy with new packaging --- bumpreqs/marker_extract.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bumpreqs/marker_extract.py b/bumpreqs/marker_extract.py index c650704..d0092e9 100644 --- a/bumpreqs/marker_extract.py +++ b/bumpreqs/marker_extract.py @@ -1,6 +1,8 @@ from typing import Any, Iterator, Optional, Tuple -from packaging.markers import Marker, Variable +from packaging._parser import Variable + +from packaging.markers import Marker from .vrange import TooComplicated, VersionIntervals