From 3a96438bce995ff203fb94b061a4f4141edf93bb Mon Sep 17 00:00:00 2001 From: Stefan Praszalowicz Date: Tue, 12 Dec 2023 13:15:03 -1000 Subject: [PATCH] Unpin all depedencies --- pyproject.toml | 40 +++++++++++++++++----------------- requirements.txt | 56 ++++++++++++++++++++++++------------------------ 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b76b508..a5d01a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,14 +21,14 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "dacite==1.6.0", + "dacite>=1.6.0", "requests[socks]>=2.28.1", - "typing-extensions==4.3.0", - "urllib3==1.26.12", - "protobuf==4.22.0", - "grpcio==1.51.3", - "googleapis-common-protos==1.58.0", - "protoc-gen-openapiv2==0.0.1", + "typing-extensions>=4.3.0", + "urllib3>=1.26.12", + "protobuf>=4.22.0", + "grpcio>=1.51.3", + "googleapis-common-protos>=1.58.0", + "protoc-gen-openapiv2>=0.0.1", ] [project.optional-dependencies] @@ -38,21 +38,21 @@ analytics = [ "fastparquet>=0.8.3" ] dev = [ - "black==22.8.0", - "isort==5.10.1", - "flake8==5.0.4", - "GitPython==3.1.27", - "grpcio-tools==1.51.3", - "mypy==0.971", - "mypy-extensions==0.4.3", - "pylint==2.15.3", - "types-protobuf==4.22.0", - "types-PyYAML==6.0.0", - "types-requests==2.28.1", + "black>=22.8.0", + "isort>=5.10.1", + "flake8>=5.0.4", + "GitPython>=3.1.27", + "grpcio-tools>=1.51.3", + "mypy>=0.971", + "mypy-extensions>=0.4.3", + "pylint>=2.15.3", + "types-protobuf>=4.22.0", + "types-PyYAML>=6.0.0", + "types-requests>=2.28.1", ] test = [ - "httpretty==1.1.4", - "pytest==7.1.3", + "httpretty>=1.1.4", + "pytest>=7.1.3", ] [tool.setuptools.packages.find] diff --git a/requirements.txt b/requirements.txt index ee3fe37..ad72f95 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,29 +1,29 @@ -astroid==2.12.10 -attrs==22.1.0 +astroid>=2.12.10 +attrs>=22.1.0 build>=0.8.0 -certifi==2022.9.14 -chardet==5.0.0 -dacite==1.6.0 -fastparquet==0.8.3 -googleapis-common-protos==1.58.0 -grpcio==1.51.3 -httpretty==1.1.4 -idna==3.4 -iniconfig==1.1.1 -lazy-object-proxy==1.7.1 -mccabe==0.7.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==4.22.0 -protoc-gen-openapiv2==0.0.1 -py==1.11.0 -pyparsing==3.0.9 -python-http-client==3.3.7 -requests[socks]==2.28.1 -six==1.16.0 -toml==0.10.2 -traitlets==5.4.0 -typed-ast==1.5.4 -typing-extensions==4.3.0 -urllib3==1.26.12 -wrapt==1.14.1 \ No newline at end of file +certifi>=2022.9.14 +chardet>=5.0.0 +dacite>=1.6.0 +fastparquet>=0.8.3 +googleapis-common-protos>=1.58.0 +grpcio>=1.51.3 +httpretty>=1.1.4 +idna>=3.4 +iniconfig>=1.1.1 +lazy-object-proxy>=1.7.1 +mccabe>=0.7.0 +packaging>=21.3 +pluggy>=1.0.0 +protobuf>=4.22.0 +protoc-gen-openapiv2>=0.0.1 +py>=1.11.0 +pyparsing>=3.0.9 +python-http-client>=3.3.7 +requests[socks]>=2.28.1 +six>=1.16.0 +toml>=0.10.2 +traitlets>=5.4.0 +typed-ast>=1.5.4 +typing-extensions>=4.3.0 +urllib3>=1.26.12 +wrapt>=1.14.1 \ No newline at end of file