Skip to content

Commit

Permalink
Merge pull request #146 from NREL/fix_package_issue
Browse files Browse the repository at this point in the history
asdf
  • Loading branch information
AadilLatif authored Mar 26, 2024
2 parents 6ee4061 + 49f753a commit ad52cf3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pull_request_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
#os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest]
#os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9"] #["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 4 additions & 5 deletions src/pydss/reports/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from . import *
# import pkgutil
import pkgutil


# __path__ = pkgutil.extend_path(__path__, __name__)
__path__ = pkgutil.extend_path(__path__, __name__)

# for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
# __import__(modname)
for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
__import__(modname)

0 comments on commit ad52cf3

Please sign in to comment.