diff --git a/CHANGELOG.md b/CHANGELOG.md index a0d729f..5a6ffdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/ezcv/__init__.py b/ezcv/__init__.py index 7ccdccb..c67dee1 100644 --- a/ezcv/__init__.py +++ b/ezcv/__init__.py @@ -64,4 +64,4 @@ generate_site(output_folder="my_site", theme = "aerial", preview = True) ``` """ -__version__ = "0.3.4" \ No newline at end of file +__version__ = "0.3.5" \ No newline at end of file diff --git a/setup.py b/setup.py index 0be7e5a..6a17523 100644 --- a/setup.py +++ b/setup.py @@ -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