Skip to content

Commit

Permalink
Fix expected package version in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pavoljuhas committed May 30, 2024
1 parent 8aa1725 commit ab96766
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cirq-aqt/cirq_aqt/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_aqt.__version__ == "1.4.0.dev"
assert cirq_aqt.__version__ == "1.4.0"
2 changes: 1 addition & 1 deletion cirq-core/cirq/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq.__version__ == "1.4.0.dev"
assert cirq.__version__ == "1.4.0"
2 changes: 1 addition & 1 deletion cirq-google/cirq_google/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_google.__version__ == "1.4.0.dev"
assert cirq_google.__version__ == "1.4.0"
2 changes: 1 addition & 1 deletion cirq-ionq/cirq_ionq/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_ionq.__version__ == "1.4.0.dev"
assert cirq_ionq.__version__ == "1.4.0"
2 changes: 1 addition & 1 deletion cirq-pasqal/cirq_pasqal/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_pasqal.__version__ == "1.4.0.dev"
assert cirq_pasqal.__version__ == "1.4.0"
2 changes: 1 addition & 1 deletion cirq-rigetti/cirq_rigetti/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_rigetti.__version__ == "1.4.0.dev"
assert cirq_rigetti.__version__ == "1.4.0"
2 changes: 1 addition & 1 deletion cirq-web/cirq_web/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_web.__version__ == "1.4.0.dev"
assert cirq_web.__version__ == "1.4.0"

0 comments on commit ab96766

Please sign in to comment.