Skip to content

Commit

Permalink
Merge pull request #46 from Descent098/tornado-temp-fix
Browse files Browse the repository at this point in the history
Added 0.3.5 code
  • Loading branch information
Descent098 authored Nov 17, 2023
2 parents d613264 + 4fec252 commit 109a4b9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog


## V0.3.5; November 17th 2023

Fixed new installations

### Bug fixes

- Pinned tornado to < 6.3 to avoid issues with environment no longer being static
- https://www.tornadoweb.org/en/stable/wsgi.html#tornado.wsgi.WSGIContainer.environ:~:text=Changed%20in%20version%206.3%3A%20No%20longer%20a%20static%20method.
- https://github.com/lepture/python-livereload/issues/270
- https://stackoverflow.com/questions/76182748/pyfyre-typeerror-wsgicontainer-environ

## V0.3.4; July 29th 2022

Adding a fix for macos installations
Expand Down
2 changes: 1 addition & 1 deletion ezcv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@
generate_site(output_folder="my_site", theme = "aerial", preview = True)
```
"""
__version__ = "0.3.4"
__version__ = "0.3.5"
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def get_content(*filename:str) -> str:
"css-html-js-minify", # Used to minify html, css and JS files for optimized builds
"livereload", # Used to auto-reload the site when changes are made
"flask", # Used to create the web server for live reloading
"tornado<6.3.0" # HACK: Pinned until livereload is patched
],
extras_require = {
"dev" : ["mkdocs", # Used to create HTML versions of the markdown docs in the docs directory
Expand Down

0 comments on commit 109a4b9

Please sign in to comment.