Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2022-11-28 15:32:04 +00:00
commit 71eca58c4d
2 changed files with 3 additions and 0 deletions

View file

@ -142,6 +142,8 @@ def read_DistillationContraction_hd5(path, ens_id, diagrams=["direct"], idl=None
for explore_file in explore_path.iterdir(): for explore_file in explore_path.iterdir():
if explore_file.is_file(): if explore_file.is_file():
stem = explore_file.with_suffix("").with_suffix("").as_posix().split("/")[-1] stem = explore_file.with_suffix("").with_suffix("").as_posix().split("/")[-1]
else:
continue
file_list = [] file_list = []
for dir in directories: for dir in directories:

View file

@ -26,6 +26,7 @@ setup(name='pyerrors',
packages=find_packages(), packages=find_packages(),
python_requires='>=3.7.0', python_requires='>=3.7.0',
install_requires=['numpy>=1.19', 'autograd>=1.5', 'numdifftools>=0.9.41', 'matplotlib>=3.5', 'scipy>=1.7', 'iminuit>=2.17', 'h5py>=3.7', 'lxml>=4.9', 'python-rapidjson>=1.9', 'pandas>=1.1'], install_requires=['numpy>=1.19', 'autograd>=1.5', 'numdifftools>=0.9.41', 'matplotlib>=3.5', 'scipy>=1.7', 'iminuit>=2.17', 'h5py>=3.7', 'lxml>=4.9', 'python-rapidjson>=1.9', 'pandas>=1.1'],
extras_require={'test': ['pytest', 'pytest-cov', 'pytest-benchmark']},
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',