Skip to content

Commit

Permalink
fix: include package_desc.md when building packages
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoandre-avaiga committed Jul 17, 2024
1 parent fe4ba50 commit a69130a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-and-release-single-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ jobs:
working-directory: ${{ steps.set-variables.outputs.package_dir }}
run: |
python setup.py build_py && python -m build
- name: Rename files
run: |
for file in ./dist/*; do mv "$file" "${file//_/-}"; done
- name: Create tag and release
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ jobs:
working-directory: ${{ steps.set-variables.outputs.package_dir }}
run: |
python setup.py build_py && python -m build
for file in ./dist/*; do mv "$file" "${file//_/-}"; done
- name: Create tag and release
working-directory: ${{ steps.set-variables.outputs.package_dir }}
Expand Down Expand Up @@ -212,6 +213,7 @@ jobs:
- name: Build Taipy package
run: |
python setup.py build_py && python -m build
for file in ./dist/*; do mv "$file" "${file//_/-}"; done
- name: Create tag and release Taipy
run: |
Expand Down
1 change: 1 addition & 0 deletions tools/packages/taipy-config/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ include taipy/config/*.pyi
include taipy/config/*.json
include *.json
include taipy/config/setup.requirements.txt
include package_desc.md
1 change: 1 addition & 0 deletions tools/packages/taipy-core/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ include taipy/core/*.json
include taipy/core/config/*.json
include *.json
include taipy/core/setup.requirements.txt
include package_desc.md
1 change: 1 addition & 0 deletions tools/packages/taipy-gui/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ include taipy/gui/viselements.json
include taipy/gui/*.pyi
include *.json
include taipy/gui/setup.requirements.txt
include package_desc.md
1 change: 1 addition & 0 deletions tools/packages/taipy-rest/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include taipy/rest/*.json
include *.json
include taipy/rest/setup.requirements.txt
include package_desc.md
1 change: 1 addition & 0 deletions tools/packages/taipy-templates/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
recursive-include taipy/templates *
include *.json
include taipy/templates/setup.requirements.txt
include package_desc.md
1 change: 1 addition & 0 deletions tools/packages/taipy/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ include taipy/rest/*.json
recursive-include taipy/templates *

include setup.requirements.txt
include package_desc.md

0 comments on commit a69130a

Please sign in to comment.