diff --git a/CHANGELOG.md b/CHANGELOG.md index bd06967..611502c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Development ----------- +0.7.3 +----- +- Fix bug on 0.7.2 verison without required local web server template files. + 0.7.2 ----- - Remove existing sketch after clearing/running it again [PR #199](https://github.com/berinhard/pyp5js/pull/199) diff --git a/MANIFEST.in b/MANIFEST.in index 2bc9dde..becfcb2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ recursive-include pyp5js/templates * -recursive-include pyp5js/http/templates * -recursive-include pyp5js/http/static * +recursive-include pyp5js/http_local/templates * +recursive-include pyp5js/http_local/static * diff --git a/VERSION b/VERSION index 7486fdb..f38fc53 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.2 +0.7.3 diff --git a/setup.py b/setup.py index d00422d..211b2f9 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,8 @@ package_data={ 'pyp5js': [ 'templates/*', - 'http/templates/*', - 'http/static/*', + 'http_local/templates/*', + 'http_local/static/*', ] }, include_package_data=True,