forked from platypush/platypush
🐛 Fixed import error on pip install platypush
.
pyproject needs a version attribute from a Platypush module, while `version.py` is currently in the source root instead.
This commit is contained in:
parent
fd07709811
commit
457c5cb3e3
2 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
- [Bug]: Fixed installation bug in `pip install platypush` introduced by the
|
||||
`pyproject.toml` migration.
|
||||
|
||||
## [1.3.3]
|
||||
|
||||
- [`3e02304a`](https://git.platypush.tech/platypush/platypush/commit/3e02304ac203625650ab4b03f9d4146a40839f2f)
|
||||
|
|
|
@ -19,7 +19,7 @@ keywords = [
|
|||
]
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
version = {attr = "version.__version__"}
|
||||
version = {attr = "platypush.__version__"}
|
||||
dependencies = {file = "requirements.txt"}
|
||||
|
||||
[project.urls]
|
||||
|
|
Loading…
Reference in a new issue