Skip to content

Commit c90803b

Browse files
committed
fixing reference to aepp during installation
1 parent 58a25e3 commit c90803b

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

docs/releases.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Patch:
1313
* Adding more check in the `checkComponentSync` report
1414
* Documentation improved in synchronizer
1515
* Support of extension added in `createTargetsLibrary`
16+
* Fixing dependency to `aepp` `som` module
1617

1718
## 0.4.4
1819
* adding a `getBuilds` method on the `Library` class instance

launchpy/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.5-2"
1+
__version__ = "0.4.5-3"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ dependencies = ['pandas',
2929
"PyJWT",
3030
"PyJWT[crypto]",
3131
"pathlib2",
32-
"pathlib"]
32+
"pathlib",
33+
"aepp"]
3334
dynamic = ["version"]
3435

3536
[project.urls]

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ PyJWT>=1.7.1
44
pathlib2>=2.3.5
55
requests>=2.25.0
66
aepp=>0.3.10
7-
pandas>=2.1.0
7+
pandas>=2.1.0
8+
aepp>=0.3.12

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ def get_version(rel_path: str):
4343
"Development Status :: 4 - Beta"
4444
],
4545
python_requires='>=3.10',
46-
install_requires=["requests",
47-
"PyJWT", "pathlib2", "pathlib", "PyJWT[crypto]","aepp","pandas"],
46+
install_requires=["requests","aepp",
47+
"PyJWT", "pathlib2", "pathlib", "PyJWT[crypto]","pandas"],
4848
)

0 commit comments

Comments
 (0)