Skip to content

Commit

Permalink
Missing files for python typing
Browse files Browse the repository at this point in the history
  • Loading branch information
vitenti committed Jul 24, 2023
1 parent c03a342 commit efd72ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion generate_py_makefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
for root, dirs, files in os.walk(subdir):
if subdir == root:
for file in files:
if file.endswith(('.py', '.pyi')):
if file.endswith(('.py', '.pyi', '.typed')):
file = os.path.join(root, file)
python_files.append(file)

Expand Down
3 changes: 3 additions & 0 deletions numcosmo_py.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@


nobase_python_PYTHON = \
numcosmo_py/py.typed \
numcosmo_py/nc.pyi \
numcosmo_py/ncm.pyi \
numcosmo_py/ncm.py \
Expand All @@ -19,6 +20,8 @@ nobase_python_PYTHON = \
numcosmo_py/experiments/funnel.py \
numcosmo_py/experiments/xcdm_no_perturbations.py \
numcosmo_py/experiments/__init__.py \
numcosmo_py/external/minimax_tilting_sampler.py \
numcosmo_py/external/__init__.py \
numcosmo_py/interpolation/__init__.py \
numcosmo_py/interpolation/stats_dist.py \
numcosmo_py/plotting/tools.py \
Expand Down

0 comments on commit efd72ca

Please sign in to comment.