From 393f33d96fa25fee5af9576920c03e0eb3f14f24 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:55:17 +0000 Subject: [PATCH] Update dependency packaging to v23.2 --- poetry.lock | 46 +++++----------------------------------------- pyproject.toml | 7 ++----- 2 files changed, 7 insertions(+), 46 deletions(-) diff --git a/poetry.lock b/poetry.lock index dc0752c..ea31a71 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "alabaster" @@ -865,13 +865,13 @@ files = [ [[package]] name = "packaging" -version = "23.0" +version = "23.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.0-py3-none-any.whl", hash = "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2"}, - {file = "packaging-23.0.tar.gz", hash = "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97"}, + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] [[package]] @@ -1572,17 +1572,6 @@ files = [ [package.dependencies] cryptography = ">=35.0.0" -[[package]] -name = "types-python-slugify" -version = "8.0.0.1" -description = "Typing stubs for python-slugify" -optional = false -python-versions = "*" -files = [ - {file = "types-python-slugify-8.0.0.1.tar.gz", hash = "sha256:f2177d2e65ecf2eca742d28fbf236a8d919a72e68272d1d748c3fe965e5ea3ab"}, - {file = "types_python_slugify-8.0.0.1-py3-none-any.whl", hash = "sha256:1de288ce45c85627ef632c2b5098dedccfc7ebedb241d181ba69402f03704449"}, -] - [[package]] name = "types-redis" version = "4.5.1.4" @@ -1598,20 +1587,6 @@ files = [ cryptography = ">=35.0.0" types-pyOpenSSL = "*" -[[package]] -name = "types-requests" -version = "2.28.11.15" -description = "Typing stubs for requests" -optional = false -python-versions = "*" -files = [ - {file = "types-requests-2.28.11.15.tar.gz", hash = "sha256:fc8eaa09cc014699c6b63c60c2e3add0c8b09a410c818b5ac6e65f92a26dde09"}, - {file = "types_requests-2.28.11.15-py3-none-any.whl", hash = "sha256:a05e4c7bc967518fba5789c341ea8b0c942776ee474c7873129a61161978e586"}, -] - -[package.dependencies] -types-urllib3 = "<1.27" - [[package]] name = "types-toml" version = "0.10.8.5" @@ -1623,17 +1598,6 @@ files = [ {file = "types_toml-0.10.8.5-py3-none-any.whl", hash = "sha256:2432017febe43174af0f3c65f03116e3d3cf43e7e1406b8200e106da8cf98992"}, ] -[[package]] -name = "types-urllib3" -version = "1.26.25.8" -description = "Typing stubs for urllib3" -optional = false -python-versions = "*" -files = [ - {file = "types-urllib3-1.26.25.8.tar.gz", hash = "sha256:ecf43c42d8ee439d732a1110b4901e9017a79a38daca26f08e42c8460069392c"}, - {file = "types_urllib3-1.26.25.8-py3-none-any.whl", hash = "sha256:95ea847fbf0bf675f50c8ae19a665baedcf07e6b4641662c4c3c72e7b2edf1a9"}, -] - [[package]] name = "typing-extensions" version = "4.5.0" @@ -1782,4 +1746,4 @@ redis = ["redis"] [metadata] lock-version = "2.0" python-versions = "^3.7" -content-hash = "2213a75a00f27293bb23f2a74792c2f8e46b97148e9197ddf620c9239d88b634" +content-hash = "37892839cc3207d00936d4f2d47780725bc0c299e1b1372a0bb4aba8907fe379" diff --git a/pyproject.toml b/pyproject.toml index efbabaf..e7191da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "diffsync" -version = "1.7.0" +version = "1.8.0" description = "Library to easily sync/diff/update 2 different data sources" authors = ["Network to Code, LLC "] license = "Apache-2.0" @@ -26,7 +26,7 @@ redis = {version = "^4.3", optional = true} [tool.poetry.extras] redis = ["redis"] -[tool.poetry.group.dev.dependencies] +[tool.poetry.dev-dependencies] pytest = "*" pyyaml = "*" black = "*" @@ -47,8 +47,6 @@ toml = "*" types-toml = "*" types-redis = "*" pytest-redis = "^2.4.0" -types-requests = "^2.28.11.15" -types-python-slugify = "^8.0.0.1" [tool.black] line-length = 120 @@ -103,7 +101,6 @@ testpaths = [ [tool.mypy] warn_unused_configs = true -disallow_untyped_defs = true ignore_missing_imports = true [build-system]