Skip to content

Commit

Permalink
Fix python3.7 syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-lazar committed Jan 6, 2021
1 parent d75740c commit 17c9444
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

- n/a

### v0.8.1 (2021-01-06)

### Changes

- Remove new type hint syntax that was causing an error in python 3.7.

### v0.8.0 (2021-01-06)

#### Changes
Expand Down
2 changes: 1 addition & 1 deletion jetforce/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.0"
__version__ = "0.8.1"
2 changes: 1 addition & 1 deletion jetforce/app/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def run_cgi_script(

def cgi_body_generator(
self,
proc: subprocess.Popen[bytes],
proc: subprocess.Popen,
) -> typing.Iterator[typing.Union[bytes, Deferred]]:
"""
Non-blocking read from the stdout of the CGI process and pipe it
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def long_description() -> str:

setuptools.setup(
name="Jetforce",
version="0.8.0",
version="0.8.1",
url="https://github.com/michael-lazar/jetforce",
license="Other/Proprietary License",
author="Michael Lazar",
Expand Down

0 comments on commit 17c9444

Please sign in to comment.