python-dateutil had an additional updated release in Apr2021 with 2.8.2.
A few of my other packages in pip require the newer one.
Can you bump the dependency to allow for greater versions for python-dateutil in pyproject.toml?
from
python-dateutil = "2.8.1"
to
python-dateutil = "^2.8.1"
?
python-dateutil had an additional updated release in Apr2021 with 2.8.2. A few of my other packages in pip require the newer one. Can you bump the dependency to allow for greater versions for python-dateutil in pyproject.toml? from python-dateutil = "2.8.1" to python-dateutil = "^2.8.1" ?