From 0c69384e96071dbfb4f26abbdc176de64b1ba2f6 Mon Sep 17 00:00:00 2001 From: Fabien Coelho Date: Sat, 10 Aug 2024 02:42:44 +0200 Subject: [PATCH] add explicit bcrypt dependency --- docs/versions.md | 3 ++- pyproject.toml | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/versions.md b/docs/versions.md index 837d2c7..0ed77fe 100644 --- a/docs/versions.md +++ b/docs/versions.md @@ -9,11 +9,12 @@ please report any [issues](https://github.com/zx80/flask-tester/issues). Check whether data and json should be exclusive. -## ? on ? +## 4.3 on ? Improve comments. Activate _Python 3.13_ and _Pypy 3.10_ in GitHub CI. Restrict CI to _main_ branch. +Add explicit `bcrypt` dependency for tests. ## 4.2 on 2024-07-28 diff --git a/pyproject.toml b/pyproject.toml index 90e1f06..e09be07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "FlaskTester" -version = "4.2" +version = "4.3" authors = [ { name = "Fabien Coelho", email = "flask.tester@coelho.net" } ] description = "Pytest fixtures for Flask internal and external authenticated tests" readme = "README.md" @@ -12,7 +12,6 @@ license = { text = "CC0" } requires-python = ">=3.10" dependencies = [ "requests", - "flask", "pytest" ] classifiers = [ @@ -39,7 +38,7 @@ dev = [ # packaging "build", "twine", "wheel", # tests - "types-flask", "types-requests", "FlaskSimpleAuth>=30.0", "passlib", "pydantic" + "types-flask", "types-requests", "FlaskSimpleAuth>=30.0", "passlib", "bcrypt", "pydantic" ] # documentation generation doc = ["sphinx", "sphinx_rtd_theme", "sphinx-autoapi", "sphinx-lint", "myst_parser"]