Skip to content

Commit

Permalink
fix license specs (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-quelle authored Feb 3, 2025
1 parent 0967af5 commit b3ffca1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions ci/emu_base/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ authors = [
]
url="https://gitlab.pasqal.com/emulation/rydberg-atoms/emu-ct"
requires-python = ">=3.10"
license = {text = "MIT-derived"}
license = {file = "../../LICENSE"}
classifiers=[
"License :: MIT-derived",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
Expand Down
3 changes: 1 addition & 2 deletions ci/emu_mps/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ authors = [
]
url="https://gitlab.pasqal.com/emulation/rydberg-atoms/emu-ct"
requires-python = ">=3.10"
license = {text = "MIT-derived"}
license = {file = "../../LICENSE"}
classifiers=[
"License :: MIT-derived",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ authors = [
{ name = "Pablo Le Henaff", email="[email protected]" }
]
requires-python = ">=3.10"
license = {text = "MIT-derived"}
license = {file = "LICENSE"}
classifiers=[
"License :: MIT-derived",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
Expand Down
2 changes: 1 addition & 1 deletion test/emu_sv/test_end_to_end.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def test_end_to_end_afm_ring():
)

energy = result["energy"][final_time] # (-115.34554274708604-2.1316282072803006e-14j)
assert approx(energy, 1e-8) == -115.34554479213088
assert approx(energy, 1e-7) == -115.34554479213088

energy_variance = result["energy_variance"][final_time] # 45.911110563993134
assert approx(energy_variance, 1e-3) == 45.91111056399
Expand Down

0 comments on commit b3ffca1

Please sign in to comment.