Skip to content

Commit

Permalink
Merge pull request #341 from OpenEnergyPlatform/hotfix-338-setup-file
Browse files Browse the repository at this point in the history
Hotfix package_data path
  • Loading branch information
chrwm authored Aug 25, 2022
2 parents 7bde65c + 3c0b944 commit ea9682c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
maintainer="Ludwig Hülk",
Expand Down Expand Up @@ -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"),
]
},
Expand Down

0 comments on commit ea9682c

Please sign in to comment.