Skip to content

Commit 84a1982

Browse files
rsbrosti-am-mounce
authored andcommitted
fix(install): updating complete.yml to run jobs in parallel, and updated setup.py to explicity include pyscan/VERSION.json when using pip install .
1 parent acac485 commit 84a1982

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/complete.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
4848
complete2:
4949
runs-on: ubuntu-latest
50-
needs: complete # This ensures complete2 runs after complete
5150

5251
steps:
5352
- uses: actions/checkout@v3

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,8 @@ def read(fname):
6262
"Operating System :: Unix"
6363
],
6464
python_requires='>=3.6',
65+
include_package_data=True, # Ensure package data is included
66+
package_data={
67+
'pyscan': ['VERSION.json'], # Specify the package data to include
68+
},
6569
)

0 commit comments

Comments
 (0)