-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies in setup.py and Pipfile
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ verify_ssl = true | |
name = "pypi" | ||
|
||
[packages] | ||
taipy-gui = {git = "https://[email protected]/Avaiga/taipy-gui.git@develop"} | ||
taipy-rest = {git = "https://[email protected]/Avaiga/taipy-rest.git@develop"} | ||
taipy-gui = "==2.1" | ||
taipy-rest = "==2.1" | ||
|
||
[dev-packages] | ||
pytest = "*" | ||
|
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 |
---|---|---|
|
@@ -27,8 +27,8 @@ | |
version_string = f"{version_string}.{vext}" | ||
|
||
requirements = [ | ||
"taipy-gui@git+https://[email protected]/Avaiga/taipy-gui.git@develop", | ||
"taipy-rest@git+https://[email protected]/Avaiga/taipy-rest.git@develop", | ||
"taipy-gui>=2.1,<2.2", | ||
"taipy-rest>=2.1,<2.2", | ||
] | ||
|
||
test_requirements = ["pytest>=3.8"] | ||
|
@@ -55,7 +55,7 @@ | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
], | ||
description="A 360° open-source platform from Python pilots to production-ready web apps.", | ||
description="The Python application builder. Turns Data and AI algorithms into full web apps in no time.", | ||
install_requires=requirements, | ||
license="Apache License 2.0", | ||
long_description=readme, | ||
|