Skip to content

Commit 0c69615

Browse files
authored
DEP: Bump min version of dateutil to 2.7.3 (#33363)
1 parent be86b65 commit 0c69615

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

Diff for: ci/deps/azure-36-minimum_versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
- numpy=1.13.3
2323
- openpyxl=2.5.7
2424
- pytables=3.4.2
25-
- python-dateutil=2.6.1
25+
- python-dateutil=2.7.3
2626
- pytz=2017.2
2727
- scipy=0.19.0
2828
- xlrd=1.1.0

Diff for: ci/deps/azure-macos-36.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies:
2323
- openpyxl
2424
- pyarrow>=0.13.0
2525
- pytables
26-
- python-dateutil==2.6.1
26+
- python-dateutil==2.7.3
2727
- pytz
2828
- xarray
2929
- xlrd

Diff for: doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Package Minimum support
221221
================================================================ ==========================
222222
`setuptools <https://setuptools.readthedocs.io/en/latest/>`__ 24.2.0
223223
`NumPy <https://www.numpy.org>`__ 1.13.3
224-
`python-dateutil <https://dateutil.readthedocs.io/en/stable/>`__ 2.6.1
224+
`python-dateutil <https://dateutil.readthedocs.io/en/stable/>`__ 2.7.3
225225
`pytz <https://pypi.org/project/pytz/>`__ 2017.2
226226
================================================================ ==========================
227227

Diff for: doc/source/whatsnew/v1.1.0.rst

+13
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,19 @@ Other enhancements
9494

9595
.. ---------------------------------------------------------------------------
9696
97+
Increased minimum versions for dependencies
98+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
99+
100+
Some minimum supported versions of dependencies were updated (:issue:`29766`, :issue:`29723`).
101+
If installed, we now require:
102+
103+
+-----------------+-----------------+----------+---------+
104+
| Package | Minimum Version | Required | Changed |
105+
+=================+=================+==========+=========+
106+
| python-dateutil | 2.7.3 | X | |
107+
+-----------------+-----------------+----------+---------+
108+
109+
97110
Development Changes
98111
^^^^^^^^^^^^^^^^^^^
99112

Diff for: environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies:
55
# required
66
- numpy>=1.15
77
- python=3
8-
- python-dateutil>=2.6.1
8+
- python-dateutil>=2.7.3
99
- pytz
1010

1111
# benchmarks

Diff for: requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See that file for comments about the need/usage of each dependency.
33

44
numpy>=1.15
5-
python-dateutil>=2.6.1
5+
python-dateutil>=2.7.3
66
pytz
77
asv
88
cython>=0.29.16

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ def srcpath(name=None, suffix=".pyx", subdir="src"):
747747
def setup_package():
748748
setuptools_kwargs = {
749749
"install_requires": [
750-
"python-dateutil >= 2.6.1",
750+
"python-dateutil >= 2.7.3",
751751
"pytz >= 2017.2",
752752
f"numpy >= {min_numpy_ver}",
753753
],

0 commit comments

Comments
 (0)