Skip to content

Commit

Permalink
uptade license in pyproject.toml (#137)
Browse files Browse the repository at this point in the history
* uptade toml

* increase tolerance
  • Loading branch information
kelle authored Nov 15, 2024
1 parent d11396f commit f1b7430
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ description="Spectral energy distribution construction and analysis tools"
keywords=['astronomy']
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD 3-Clause License',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down
4 changes: 2 additions & 2 deletions tests/test_isochrone.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def test_evaluate(xval, age, xparam, yparam, expected_result, expected_result_lo
assert (isinstance(result, tuple)) is True
if yparam == 'logg':
assert (np.isclose(average, expected_result, atol=0.006))
assert (np.isclose(lower, expected_result_low, atol=0.01))
assert (np.isclose(upper, expected_result_up, atol=0.01))
assert (np.isclose(lower, expected_result_low, atol=0.015))
assert (np.isclose(upper, expected_result_up, atol=0.015))
else:
assert (np.isclose(average.value, expected_result, atol=0.005))
assert (np.isclose(lower.value, expected_result_low, atol=0.01))
Expand Down

0 comments on commit f1b7430

Please sign in to comment.