Skip to content

Commit 143b06f

Browse files
pump dev version (#85)
2 parents 71b29d2 + fdfb770 commit 143b06f

3 files changed

Lines changed: 3 additions & 10 deletions

File tree

_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.0.2'
1+
__version__ = '0.0.3'
22

33
if __name__ == '__main__':
44
print(__version__)

test/cirq_compatibility.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,13 @@
1919

2020
@pytest.mark.cirq
2121
def test_to_json() -> None:
22-
assert (
23-
cirq.to_json(tu.ns * 3)
24-
== """{
22+
assert cirq.to_json(tu.ns * 3) == """{
2523
"cirq_type": "tunits.Time",
2624
"value": 3,
2725
"unit": "ns"
2826
}"""
29-
)
3027

31-
assert (
32-
cirq.to_json(tu.GHz * [1, 2, 3, -1])
33-
== """{
28+
assert cirq.to_json(tu.GHz * [1, 2, 3, -1]) == """{
3429
"cirq_type": "tunits.FrequencyArray",
3530
"value": [
3631
1.0,
@@ -40,4 +35,3 @@ def test_to_json() -> None:
4035
],
4136
"unit": "GHz"
4237
}"""
43-
)

test_perf/test_value_with_dimension_performance.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from tunits import ValueWithDimension, Value
2020
from .perf_testing_util import a_random_value_with_dimension, perf_goal
2121

22-
2322
if TYPE_CHECKING:
2423
import numpy
2524

0 commit comments

Comments
 (0)