From 0d73dd1ec1427b31530c2aa6f69b62f54bd34ba0 Mon Sep 17 00:00:00 2001 From: khamaileon Date: Thu, 3 Aug 2023 12:56:33 +0200 Subject: [PATCH] Install pytz --- poetry.lock | 4 +--- pyproject.toml | 1 + requirements.txt | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index bf0014f..b521a2e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1507,7 +1507,6 @@ files = [ {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3b08d4cc24f471b2c8ca24ec060abf4bebc6b144cb89cba638c720546b1cf538"}, {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d737a602fbd82afd892ca746392401b634e278cb65d55c4b7a8f48e9ef8d008d"}, {file = "Pillow-10.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:3a82c40d706d9aa9734289740ce26460a11aeec2d9c79b7af87bb35f0073c12f"}, - {file = "Pillow-10.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:bc2ec7c7b5d66b8ec9ce9f720dbb5fa4bace0f545acd34870eff4a369b44bf37"}, {file = "Pillow-10.0.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:d80cf684b541685fccdd84c485b31ce73fc5c9b5d7523bf1394ce134a60c6883"}, {file = "Pillow-10.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76de421f9c326da8f43d690110f0e79fe3ad1e54be811545d7d91898b4c8493e"}, {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81ff539a12457809666fef6624684c008e00ff6bf455b4b89fd00a140eecd640"}, @@ -1517,7 +1516,6 @@ files = [ {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d50b6aec14bc737742ca96e85d6d0a5f9bfbded018264b3b70ff9d8c33485551"}, {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:00e65f5e822decd501e374b0650146063fbb30a7264b4d2744bdd7b913e0cab5"}, {file = "Pillow-10.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:f31f9fdbfecb042d046f9d91270a0ba28368a723302786c0009ee9b9f1f60199"}, - {file = "Pillow-10.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:1ce91b6ec08d866b14413d3f0bbdea7e24dfdc8e59f562bb77bc3fe60b6144ca"}, {file = "Pillow-10.0.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:349930d6e9c685c089284b013478d6f76e3a534e36ddfa912cde493f235372f3"}, {file = "Pillow-10.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3a684105f7c32488f7153905a4e3015a3b6c7182e106fe3c37fbb5ef3e6994c3"}, {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4f69b3700201b80bb82c3a97d5e9254084f6dd5fb5b16fc1a7b974260f89f43"}, @@ -2512,4 +2510,4 @@ notebooks = ["contextily", "descartes", "geopandas", "ipykernel", "matplotlib", [metadata] lock-version = "2.0" python-versions = "^3.8.0" -content-hash = "6f31eff8fbc853c1a1d7ab6c1e7aff443e78f5a2ee359c805aa194a8c44be470" +content-hash = "2bc4ea129445ced049d7df944426f9683ecb992b67f10fefad7169d90eb0fdf9" diff --git a/pyproject.toml b/pyproject.toml index 9c68166..55883ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ matplotlib = {version = "^3.4.1", optional = true} contextily = {version = "^1.1.0", optional = true} geopandas = {version = "^0.8.2", optional = true} descartes = {version = "^1.0.0", optional = true} +pytz = "^2023.3" [tool.poetry.extras] notebooks = ["shapely", "ipykernel", "geopandas", "contextily", "matplotlib", "descartes"] diff --git a/requirements.txt b/requirements.txt index 992003e..c985289 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ certifi==2023.7.22 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0" charset-normalizer==3.2.0 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0" idna==3.4 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0" +pytz==2023.3 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0" requests==2.31.0 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0" urllib3==2.0.4 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0"