-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7af0d8e
commit 319b57a
Showing
2 changed files
with
10 additions
and
21 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[tool.poetry] | ||
name = "unasyncd" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
description = "A tool to transform asynchronous Python code to synchronous Python code." | ||
authors = ["Janek Nouvertné <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
libcst = "^1.0.0" | ||
libcst = ">=1.0.0,<2" | ||
click = "^8.1.7" | ||
rich = "^13.6.0" | ||
anyio = "^4.0.0" | ||
|
@@ -17,7 +17,7 @@ tomli = {version = "^2.0.1", python = "<3.11"} | |
tomli-w = "^1.0.0" | ||
rich-click = "^1.6.1" | ||
ruff = {version = "*", optional = true} | ||
importlib-metadata = { version = "^6.8.0", python = "<3.10" } | ||
importlib-metadata = { version = "^8.0.0", python = "<3.10" } | ||
|
||
|
||
[tool.poetry.extras] | ||
|