Skip to content

Commit

Permalink
fixes #462
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Aug 27, 2022
1 parent 51eb5d5 commit d91e840
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion justpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""JustPy is an object-oriented, component based, high-level Python Web Framework that requires no front-end programming"""

from .justpy import *
__version__ = "0.2.7"
__version__ = "0.2.8"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ author-email = "eli.mintz@gmail.com"
home-page = "https://justpy.io"
description-file = "README.md"
requires = [
'starlette>=0.12.0', 'uvicorn>=0.7.1', 'itsdangerous>=1.1.0', 'websockets',
'addict>=2.2.1', 'jinja2>=2.10.1', 'demjson3>=3.0.5', 'httpx>=0.11.0', 'aiofiles',
'starlette>=0.20.4', 'uvicorn>=0.18.3', 'itsdangerous>=2.1.2', 'websockets',
'addict>=2.4.0', 'jinja2>=3.1.2', 'demjson3>=3.0.5', 'httpx>=0.23.0', 'aiofiles',
'twine', 'wheel'
]
classifiers=[
Expand Down
1 change: 1 addition & 0 deletions tests/basetest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class BaseAsynctest(asynctest.TestCase):
# https://github.com/encode/starlette/blob/master/docs/testclient.md
# https://stackoverflow.com/questions/57412825/how-to-start-a-uvicorn-fastapi-in-background-when-testing-with-pytest
# https://github.com/encode/uvicorn/discussions/1103
# https://stackoverflow.com/questions/68603658/how-to-terminate-a-uvicorn-fastapi-application-cleanly-with-workers-2-when

async def setUp(self,wpfunc,port:int=8123,host:str="127.0.0.1",sleepTime=0.2,debug=False,profile=True):
""" Bring server up.
Expand Down

0 comments on commit d91e840

Please sign in to comment.