Skip to content

DEP: Bump min version of dateutil to 2.7.3 #33363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/deps/azure-36-minimum_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies:
- numpy=1.13.3
- openpyxl=2.5.7
- pytables=3.4.2
- python-dateutil=2.6.1
- python-dateutil=2.7.3
- pytz=2017.2
- scipy=0.19.0
- xlrd=1.1.0
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/azure-macos-36.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies:
- openpyxl
- pyarrow>=0.13.0
- pytables
- python-dateutil==2.6.1
- python-dateutil==2.7.3
- pytz
- xarray
- xlrd
Expand Down
2 changes: 1 addition & 1 deletion doc/source/getting_started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ Package Minimum support
================================================================ ==========================
`setuptools <https://setuptools.readthedocs.io/en/latest/>`__ 24.2.0
`NumPy <https://www.numpy.org>`__ 1.13.3
`python-dateutil <https://dateutil.readthedocs.io/en/stable/>`__ 2.6.1
`python-dateutil <https://dateutil.readthedocs.io/en/stable/>`__ 2.7.3
`pytz <https://pypi.org/project/pytz/>`__ 2017.2
================================================================ ==========================

Expand Down
13 changes: 13 additions & 0 deletions doc/source/whatsnew/v1.1.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,19 @@ Other enhancements

.. ---------------------------------------------------------------------------

Increased minimum versions for dependencies
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Some minimum supported versions of dependencies were updated (:issue:`29766`, :issue:`29723`).
If installed, we now require:

+-----------------+-----------------+----------+---------+
| Package | Minimum Version | Required | Changed |
+=================+=================+==========+=========+
| python-dateutil | 2.7.3 | X | |
+-----------------+-----------------+----------+---------+


Development Changes
^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies:
# required
- numpy>=1.15
- python=3
- python-dateutil>=2.6.1
- python-dateutil>=2.7.3
- pytz

# benchmarks
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See that file for comments about the need/usage of each dependency.

numpy>=1.15
python-dateutil>=2.6.1
python-dateutil>=2.7.3
pytz
asv
cython>=0.29.16
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ def srcpath(name=None, suffix=".pyx", subdir="src"):
def setup_package():
setuptools_kwargs = {
"install_requires": [
"python-dateutil >= 2.6.1",
"python-dateutil >= 2.7.3",
"pytz >= 2017.2",
f"numpy >= {min_numpy_ver}",
],
Expand Down