Skip to content

Commit

Permalink
Add missing packages to setup.py, more perms in build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
8bitsam committed Jul 10, 2024
1 parent 5f49917 commit 3d5e3fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
runs-on: ${{ matrix.os }}
permissions:
contents: write
pull-requests: write
repository-projects: write
steps:
- name: Check-out repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def get_gsl_config_win():
setup_args = dict(
name = 'diffpy.pdffit2',
version = versiondata.get('DEFAULT', 'version'),
packages = find_packages(),
packages = find_packages(include=['diffpy', 'diffpy.*']),
test_suite = 'diffpy.pdffit2.tests',
ext_modules = [pdffit2module],
include_package_data = True,
Expand Down

0 comments on commit 3d5e3fd

Please sign in to comment.