Skip to content

Commit

Permalink
Rename _data to data
Browse files Browse the repository at this point in the history
  • Loading branch information
niklassiemer committed Oct 24, 2023
1 parent 8612dab commit fe2152a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyiron_atomistics/atomistics/structure/periodic_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def _get_periodic_table_df(file_name):
if not file_name:
return pandas.read_csv(
io.BytesIO(
pkgutil.get_data("pyiron_atomistics", "_data/periodic_table.csv")
pkgutil.get_data("pyiron_atomistics", "data/periodic_table.csv")
),
index_col=0,
)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@
'structuretoolkit==0.0.11'
],
cmdclass=versioneer.get_cmdclass(),
package_data={'': ['_data/*.csv']},
package_data={'': ['data/*.csv']},
)

0 comments on commit fe2152a

Please sign in to comment.