Skip to content

Commit

Permalink
Merge branch 'master' into 1719-more-pickleable-types
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV authored Jul 29, 2024
2 parents ddc24ad + ba4aaf5 commit ac57650
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 4.13.1 (2024-07-25)

### Fixes

#### Client configuration is passed to all qcs_sdk methods (#1792)

## 4.13.1-rc.0 (2024-07-25)

### Fixes

#### Client configuration is passed to all qcs_sdk methods (#1792)

## 4.13.0 (2024-07-16)

### Features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyquil"
version = "4.13.0"
version = "4.13.1"
description = "A Python library for creating Quantum Instruction Language (Quil) programs."
authors = ["Rigetti Computing <softapps@rigetti.com>"]
readme = "README.md"
Expand Down
2 changes: 2 additions & 0 deletions pyquil/api/_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ def native_quil_to_executable(
num_shots=nq_program.num_shots,
quantum_processor_id=self.quantum_processor_id,
translation_options=api_options or self.api_options,
client=self._client_configuration,
)

ro_sources = translated_program.ro_sources or {}
Expand All @@ -135,6 +136,7 @@ def native_quil_to_executable(
def _fetch_calibration_program(self) -> Program:
response = get_quilt_calibrations(
quantum_processor_id=self.quantum_processor_id,
client=self._client_configuration,
)
return Program(response)

Expand Down

0 comments on commit ac57650

Please sign in to comment.