Spaces:
Running
Running
Merge pull request #165 from barun-saha/pypi
Browse filesUpdate packaging workflow to include the templates
- .codecov.yml +3 -0
- .github/workflows/publish-to-pypi.yml +2 -0
- src/slidedeckai/_version.py +1 -1
.codecov.yml
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
ignore:
|
| 2 |
+
# Exclude the version file from all coverage calculations
|
| 3 |
+
- "src/slidedeckai/_version.py"
|
.github/workflows/publish-to-pypi.yml
CHANGED
|
@@ -23,6 +23,8 @@ jobs:
|
|
| 23 |
steps:
|
| 24 |
- name: Checkout code
|
| 25 |
uses: actions/checkout@v4
|
|
|
|
|
|
|
| 26 |
|
| 27 |
- name: Set up Python
|
| 28 |
uses: actions/setup-python@v5
|
|
|
|
| 23 |
steps:
|
| 24 |
- name: Checkout code
|
| 25 |
uses: actions/checkout@v4
|
| 26 |
+
with:
|
| 27 |
+
lfs: true # This ensures Git LFS files are downloaded
|
| 28 |
|
| 29 |
- name: Set up Python
|
| 30 |
uses: actions/setup-python@v5
|
src/slidedeckai/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
__version__ = "8.0.
|
|
|
|
| 1 |
+
__version__ = "8.0.1"
|