From 71b149db19c98fecf01b15fc1a5103de31b4fa2d Mon Sep 17 00:00:00 2001 From: Michele Dolfi Date: Mon, 9 Sep 2024 19:20:47 +0200 Subject: [PATCH] add tqdm Signed-off-by: Michele Dolfi --- .github/workflows/tests.yml | 2 +- .github/workflows/wheels.yml | 4 ++-- poetry.lock | 10 +++++----- pyproject.toml | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5bd1f228..3dc20327 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,7 +37,7 @@ jobs: run: poetry build - name: Testing run: | - poetry install --with test + poetry install --with test --all-extras #poetry run pytest ./tests/test_nlp.py -vvv -s poetry run pytest ./tests/test_structs.py -v poetry run pytest ./tests/test_nlp.py -v diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index a6644a25..127ed5b0 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -103,7 +103,7 @@ jobs: run: | echo "Building wheel ${CIBW_BUILD}" poetry run python --version - poetry install + poetry install --all-extras cat ./pyproject.toml poetry run python -m cibuildwheel --output-dir wheelhouse echo "step 1" @@ -140,7 +140,7 @@ jobs: run: | echo "Building wheel ${CIBW_BUILD}" poetry run python --version - poetry install + poetry install --all-extras cat ./pyproject.toml poetry run python -m cibuildwheel --output-dir wheelhouse echo "step 1" diff --git a/poetry.lock b/poetry.lock index 02478ba7..de42788a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1875,13 +1875,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.2" +version = "4.66.5" description = "Fast, Extensible Progress Meter" -optional = true +optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.2-py3-none-any.whl", hash = "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9"}, - {file = "tqdm-4.66.2.tar.gz", hash = "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531"}, + {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, + {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, ] [package.dependencies] @@ -2010,4 +2010,4 @@ toolkit = ["deepsearch-toolkit"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "c20a01b4c862c091870e316db5031d7be1acb97fc1d18e3ce5c9dfa38050e8d6" +content-hash = "d83189d440d74ef4ba67d125f2fc176ae247e2ed841c6d9095ef40ebde68e970" diff --git a/pyproject.toml b/pyproject.toml index ad889b34..48466180 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,7 @@ netwulf = "^0.1.5" python-dotenv = "^1.0.0" pybind11 = "^2.10.4" numerize = "^0.12" +tqdm = "^4.64.0" [tool.poetry.group.test.dependencies] pytest = "^7.4.2"