Skip to content

Commit 5e7859e

Browse files
authored
fix source tarball upload and reduce size significantly (#397)
Co-authored-by: viseshrp <[email protected]>
1 parent 33145a4 commit 5e7859e

File tree

3 files changed

+506
-456
lines changed

3 files changed

+506
-456
lines changed

.github/workflows/nightly_scan.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Failing action: https://github.com/ansys/pydynamicreporting/actions/runs/17598170413
12
name: Security Scan
23

34
on:
@@ -9,6 +10,7 @@ on:
910

1011
jobs:
1112
security_scan:
13+
if: false
1214
uses: ansys-internal/ci-templates/.github/workflows/security-scan-mend.yml@v7
1315
with:
1416
package_type: 'poetry+npm'

MANIFEST.in

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
graft src
2+
graft codegen
3+
include AUTHORS
4+
include CHANGELOG.rst
5+
include CONTRIBUTING.rst
6+
include CONTRIBUTORS.md
7+
include LICENSE
8+
include pyproject.toml
9+
include README.rst
10+
include setup.py
11+
12+
prune .ci
13+
prune .github
14+
prune .venv
15+
prune default_templates
16+
prune doc
17+
prune tests
18+
prune *.egg-info
19+
20+
exclude .flake8
21+
exclude .gitignore
22+
exclude .pre-commit-config.yaml
23+
exclude codecov.yml
24+
exclude Makefile
25+
exclude test_cleanup.py
26+
exclude uv.lock
27+
exclude PKG-INFO
28+
29+
global-exclude *.py[cod]
30+
global-exclude __pycache__/**

0 commit comments

Comments
 (0)