Skip to content

Commit ddcff4b

Browse files
committed
Make compatible with many python versions
1 parent cd2fd11 commit ddcff4b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# python-mediator
2-
Elastic and extensible asyncio CQRS python microframework.
2+
Elastic and extensible asyncio CQRS + ES python microframework.
3+
Compatible with recent python versions: 3.7, 3.8, 3.9.
34

45
Corresponds to clean architecture patterns, ideal for
56
command/query segregation scenarios and event-driven design approaches.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Damian Łukawski <damian@lukawscy.pl>"]
66
license = "MIT"
77

88
[tool.poetry.dependencies]
9-
python = "^3.8"
9+
python = ">=3.7 <3.10"
1010

1111
[tool.poetry.dev-dependencies]
1212
black = "^20.8b1"
@@ -17,6 +17,7 @@ flake8-black = "^0.2.1"
1717
pytest = "^6.1.0"
1818
coverage = "^5.4"
1919
pytest-asyncio = "^0.14.0"
20+
importlib_metadata = { version = "^3.7.0", python = "~3.7" }
2021

2122
[build-system]
2223
requires = ["poetry>=0.12"]

0 commit comments

Comments
 (0)