From 1c3ffabc63b4fb9d2c43a700472d143ce6771b55 Mon Sep 17 00:00:00 2001 From: Jinyu Xie Date: Mon, 2 Oct 2023 13:22:32 -0700 Subject: [PATCH] Relax dependency requirements --- requirements.txt | 130 +++++++++++++++++++++++------------------------ setup.py | 2 +- 2 files changed, 66 insertions(+), 66 deletions(-) diff --git a/requirements.txt b/requirements.txt index 3344886..2711623 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,65 +1,65 @@ -aiohttp==3.8.5 -aiosignal==1.3.1 -annotated-types==0.5.0 -async-timeout==4.0.3 -attrs==23.1.0 -bleach==6.0.0 -certifi==2023.7.22 -cffi==1.15.1 -charset-normalizer==3.2.0 -cloudpickle==2.2.1 -cryptography==41.0.3 -datasets==2.14.4 -dill==0.3.7 -docutils==0.20.1 -Farama-Notifications==0.0.4 -filelock==3.12.3 -frozenlist==1.4.0 -fsspec==2023.6.0 -gymnasium==0.29.0 -huggingface-hub==0.16.4 -idna==3.4 -importlib-metadata==6.8.0 -iniconfig==2.0.0 -jaraco.classes==3.3.0 -jeepney==0.8.0 -keyring==24.2.0 -markdown-it-py==3.0.0 -mdurl==0.1.2 -more-itertools==10.1.0 -multidict==6.0.4 -multiprocess==0.70.15 -numpy==1.25.1 -packaging==23.1 -pandas==2.0.3 -Pillow==10.0.0 -pkginfo==1.9.6 -pluggy==1.2.0 -pyarrow==13.0.0 -pycparser==2.21 -pydantic==2.1.1 -pydantic_core==2.4.0 -pygame==2.5.0 -Pygments==2.16.1 -pytest==7.4.0 -python-dateutil==2.8.2 -python-dotenv==1.0.0 -pytz==2023.3 -PyYAML==6.0.1 -readme-renderer==41.0 -requests==2.31.0 -requests-toolbelt==1.0.0 -rfc3986==2.0.0 -rich==13.5.2 -SecretStorage==3.3.3 -shortuuid==1.0.11 -six==1.16.0 -tqdm==4.66.1 -twine==4.0.2 -typing_extensions==4.7.1 -tzdata==2023.3 -urllib3==2.0.4 -webencodings==0.5.1 -xxhash==3.3.0 -yarl==1.9.2 -zipp==3.16.2 +aiohttp~=3.8.5 +aiosignal~=1.3.1 +annotated-types~=0.5.0 +async-timeout~=4.0.3 +attrs~=23.1.0 +bleach~=6.0.0 +certifi~=2023.7.22 +cffi~=1.15.1 +charset-normalizer~=3.2.0 +cloudpickle~=2.2.1 +cryptography~=41.0.3 +datasets~=2.14.4 +dill~=0.3.7 +docutils~=0.20.1 +Farama-Notifications~=0.0.4 +filelock~=3.12.3 +frozenlist~=1.4.0 +fsspec~=2023.6.0 +gymnasium~=0.29.0 +huggingface-hub~=0.16.4 +idna~=3.4 +importlib-metadata~=6.8.0 +iniconfig~=2.0.0 +jaraco.classes~=3.3.0 +jeepney~=0.8.0 +keyring~=24.2.0 +markdown-it-py~=3.0.0 +mdurl~=0.1.2 +more-itertools~=10.1.0 +multidict~=6.0.4 +multiprocess~=0.70.15 +numpy~=1.25.1 +packaging~=23.1 +pandas~=2.0.3 +Pillow~=10.0.0 +pkginfo~=1.9.6 +pluggy~=1.2.0 +pyarrow~=13.0.0 +pycparser~=2.21 +pydantic~=2.1.1 +pydantic_core~=2.4.0 +pygame~=2.5.0 +Pygments~=2.16.1 +pytest~=7.4.0 +python-dateutil~=2.8.2 +python-dotenv~=1.0.0 +pytz~=2023.3 +PyYAML~=6.0.1 +readme-renderer~=41.0 +requests~=2.31.0 +requests-toolbelt~=1.0.0 +rfc3986~=2.0.0 +rich~=13.5.2 +SecretStorage~=3.3.3 +shortuuid~=1.0.11 +six~=1.16.0 +tqdm~=4.66.1 +twine~=4.0.2 +typing_extensions~=4.7.1 +tzdata~=2023.3 +urllib3~=2.0.4 +webencodings~=0.5.1 +xxhash~=3.3.0 +yarl~=1.9.2 +zipp~=3.16.2 diff --git a/setup.py b/setup.py index 7d23dd1..82050d2 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def parse_requirements(filename): setup( name="loopquest", - version="0.1.8", + version="0.1.9", description="A Production Tool for Embodied AI.", long_description=long_description, long_description_content_type="text/markdown",