Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed Dec 18, 2024
1 parent 7e0f300 commit b381247
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The language design of promplate is similar to `Jinja2`. So you can use the `.j2

Development should be done on `dev` branch, using `>=3.10` language features. The `master` branch is used for `py3.8` compatible releases.

**Promplate** is well tested with `pytest`. GitHub Actions are used to run tests and linting. And there are test results continually generated on [Vercel(py3.9)](https://promplate-core.vercel.app/) and [Netlify(py3.8)](https://promplate-core.netlify.app/). There is [a coverage report](https://promplate-python-coverage.onrender.com/) too.
**Promplate** is well tested with `pytest`. GitHub Actions are used to run tests and linting. And there are test results continually generated on [Vercel](https://promplate-core.vercel.app/) and [Netlify](https://promplate-core.netlify.app/). There is [a coverage report](https://promplate-python-coverage.onrender.com/) too.

## Future Features (or TODOs?)

Expand Down
8 changes: 4 additions & 4 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "promplate"
version = "0.3.4.10"
version = "0.3.4.11"
description = "Prompt engineering framework for humans"
homepage = "https://promplate.dev/"
documentation = "https://docs.py.promplate.dev/"
Expand All @@ -19,7 +19,7 @@ classifiers = [
[tool.poetry.dependencies]
python = "^3.10"
typing-extensions = { version = "^4", python = "<3.12" }
aiofiles = { version = "^23.2", optional = true }
aiofiles = { version = ">=23.2", optional = true }
httpx = { version = ">=0.24, <1.0", optional = true }
openai = { version = ">=0.27, <2.0", optional = true }

Expand All @@ -32,9 +32,9 @@ all = ["aiofiles", "httpx", "openai"]
[tool.poetry.group.dev.dependencies]
isort = "^5"
black = "^24"
pytest = "^7"
pytest = "^8"
coverage = "^7"
pytest-asyncio = "^0.23"
pytest-asyncio = "^0.25"

[tool.pdm.scripts]
format = { composite = ["isort ./{args}", "black ./{args}"] }
Expand Down

0 comments on commit b381247

Please sign in to comment.