Skip to content

Commit

Permalink
Version bump again for wheel test.
Browse files Browse the repository at this point in the history
  • Loading branch information
zx-zx committed May 7, 2024
1 parent dee3fd8 commit bd90425
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- name: Install Lint tools
run: pip install --upgrade pip setuptools; pip install -r requirements.txt;
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- name: Install Format tools
run: pip install --upgrade pip setuptools; pip install -r requirements.txt; sudo apt-get install -y clang-format-6.0
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- name: Install Bazel on CI
run: ./scripts/ci_install.sh
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_quantum/core/serialize/serializer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _build_op_proto(gate_id, arg_names, arg_vals, qubit_ids):
if isinstance(arg_vals[i], str) else \
program_pb2.Arg(
arg_value=program_pb2.ArgValue(
float_value=np.round(float(arg_vals[i]), 6)))) \
float_value=np.round(float(arg_vals[i]), 6)))) \
for i in range(len(arg_vals))},
qubits=[program_pb2.Qubit(
id=q_id) for q_id in qubit_ids])])
Expand Down

0 comments on commit bd90425

Please sign in to comment.