From 27758c7c9e90723a178f5538b0d3aa291bdf9f77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Jul 2023 06:16:26 +0000 Subject: [PATCH 1/2] Bump holidays from 0.27.1 to 0.28 Bumps [holidays](https://github.com/dr-prodigy/python-holidays) from 0.27.1 to 0.28. - [Release notes](https://github.com/dr-prodigy/python-holidays/releases) - [Changelog](https://github.com/dr-prodigy/python-holidays/blob/master/CHANGES) - [Commits](https://github.com/dr-prodigy/python-holidays/compare/v.0.27.1...v.0.28) --- updated-dependencies: - dependency-name: holidays dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index af4603d..18c8631 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ # # pip-compile requirements.in # -holidays==0.27.1 +holidays==0.28 # via -r requirements.in python-dateutil==2.8.2 # via From 50d2b127473dc11103502a2ead985ae29f2d767b Mon Sep 17 00:00:00 2001 From: Marcel Johannesmann Date: Wed, 5 Jul 2023 17:23:06 +0200 Subject: [PATCH 2/2] pin holidays because of py3.7 drop --- pyproject.toml | 3 ++- requirements.txt | 11 ++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 289b9a0..56016cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,8 @@ classifiers = [ "Programming Language :: Python :: 3.11", ] dependencies = [ - "holidays>=0.16", + "holidays>=0.16,<0.28;python_version<'3.8'", + "holidays>=0.16;python_version>='3.8'", "pytz>=2022.7.1", "python-dateutil", ] diff --git a/requirements.txt b/requirements.txt index 18c8631..6986560 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,15 +2,16 @@ # This file is autogenerated by pip-compile with Python 3.11 # by the following command: # -# pip-compile requirements.in +# pip-compile '.\requirements.in' # -holidays==0.28 - # via -r requirements.in +holidays<0.28 ; python_version < "3.8" +holidays>=0.28 ; python_version >= "3.8" + # via -r .\requirements.in python-dateutil==2.8.2 # via - # -r requirements.in + # -r .\requirements.in # holidays pytz==2023.3 - # via -r requirements.in + # via -r .\requirements.in six==1.16.0 # via python-dateutil