From beca2474e396cbc4ecf0e2fece63b3d154ca78e4 Mon Sep 17 00:00:00 2001 From: yujong-lee Date: Tue, 12 Sep 2023 06:27:29 +0900 Subject: [PATCH] Move pytest to dep --- docs/conf.py | 2 +- poetry.lock | 2 +- pyproject.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 227c235..764a53a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ # version = importlib.metadata.version("fastrepl") # TODO: importlib.metadata only works after install -version = "0.0.3" +version = "0.0.4" # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information diff --git a/poetry.lock b/poetry.lock index 17e2e15..77363d9 100644 --- a/poetry.lock +++ b/poetry.lock @@ -4158,4 +4158,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.12" -content-hash = "f013d7922f44bc7f4e4dfd130bf8126f60d6118ed78d747c188e33d5447704ec" +content-hash = "a6d6d0963e6287afb16bd0374174994d637151b27c320ff385f0c6dc4d02091a" diff --git a/pyproject.toml b/pyproject.toml index 5df1e39..f24d1b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fastrepl" -version = "0.0.3" +version = "0.0.4" description = "Fast Run-Eval-Polish Loop for LLM App" authors = ["yujonglee "] readme = "README.md" @@ -25,10 +25,10 @@ torch = ">=2.0.0, !=2.0.1" datasets = "^2.14.4" backoff = "^2.2.1" statsmodels = "^0.14.0" +pytest = "^7.4" [tool.poetry.group.dev.dependencies] -pytest = "^7.4.1" pytest-xdist = "^3.3.1" pytest-benchmark = "^4.0.0" pytest-cov = "^4.1.0" @@ -67,4 +67,4 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [project.entry-points.pytest11] -pytest-fastrepl = "fastrepl.pytest_plugin" +pfastrepl = "fastrepl.pytest_plugin"