-
Notifications
You must be signed in to change notification settings - Fork 97
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
Showing
4 changed files
with
7 additions
and
7 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .justpy import * | ||
__version__ = "0.1.4" | ||
__version__ = "0.1.5" |
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 |
---|---|---|
|
@@ -396,7 +396,6 @@ def convert_dict_to_object(d): | |
return obj | ||
|
||
|
||
|
||
def redirect(url): | ||
wp = WebPage() | ||
wp.add(Div()) | ||
|
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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ def get_long_description(): | |
setuptools.setup( | ||
name="justpy", | ||
python_requires=">=3.6", | ||
version="0.1.4", | ||
version="0.1.5", | ||
license="Apache", | ||
author="Eliezer Mintz", | ||
author_email="[email protected]", | ||
|
@@ -19,7 +19,7 @@ def get_long_description(): | |
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=[ | ||
'starlette>=0.12.0', 'uvicorn>=0.7.1', 'itsdangerous>=1.1.0', | ||
'starlette>=0.12.0', 'uvicorn>=0.7.1', 'itsdangerous>=1.1.0', 'websockets', | ||
'addict>=2.2.1', 'jinja2>=2.10.1', 'demjson>=2.2.4', 'httpx>=0.11.0', 'aiofiles' | ||
], | ||
classifiers=[ | ||
|