diff --git a/.github/workflows/ci-production.yml b/.github/workflows/ci-production.yml index 508503c1..2494fad9 100644 --- a/.github/workflows/ci-production.yml +++ b/.github/workflows/ci-production.yml @@ -33,7 +33,7 @@ jobs: - name: create package run: python setup.py sdist - name: import open-mastr - run: python -m pip install ./dist/open_mastr-0.11.6.tar.gz + run: python -m pip install ./dist/open_mastr-0.11.7.tar.gz - name: Create credentials file env: MASTR_TOKEN: ${{ secrets.MASTR_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f253408..f391f73a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,11 @@ Here is a template for new release sections: ### Removed - [#](https://github.com/rl-institut/super-repo/pull/) ``` + +## [v0.11.7] Patch - Hotfix - 2022-08-25 +### Changed +- Fix dependencies in setup.py [#341](https://github.com/OpenEnergyPlatform/open-MaStR/pull/341) + ## [v0.11.6] Patch - Hotfix - 2022-08-17 ### Changed - Repair technology paramter in API download [#327](https://github.com/OpenEnergyPlatform/open-MaStR/pull/327) diff --git a/CITATION.cff b/CITATION.cff index c6d8b9f2..1e11c3b6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -27,7 +27,7 @@ authors: title: "open-MaStR" type: software license: AGPL-3.0 -version: 0.11.6 +version: 0.11.7 doi: date-released: 2022-08-17 url: "https://github.com/OpenEnergyPlatform/open-MaStR/" \ No newline at end of file diff --git a/setup.py b/setup.py index b27a4945..5441a450 100644 --- a/setup.py +++ b/setup.py @@ -15,16 +15,17 @@ "open_mastr.soap_api", "open_mastr.soap_api.metadata", "open_mastr.utils", + "open_mastr.utils.config", "open_mastr.xml_download", ], - version="0.11.6", + version="0.11.7", description="A package that provides an interface for downloading and" "processing the data of the Marktstammdatenregister (MaStR)", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/OpenEnergyPlatform/open-MaStR", download_url="https://github.com/OpenEnergyPlatform/open-MaStR/archive" - "/refs/tags/v0.11.6.tar.gz", + "/refs/tags/v0.11.7.tar.gz", author="Open Energy Family", author_email="datenzentrum@rl-institut.de", maintainer="Ludwig Hülk", @@ -67,7 +68,7 @@ }, package_data={ "open_mastr": [ - os.path.join("soap_api", "config", "*.yml"), + os.path.join("utils", "config", "*.yml"), os.path.join("soap_api", "metadata", "LICENSE"), ] },