Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docstring + Version scheme #6

Merged
merged 2 commits into from
Feb 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mpqp/execution/providers_execution/ibm_execution.py
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@
@typechecked
def run_ibm(job: Job) -> Result:
"""
Execute the job on the right IBM Q device precised in the job in parameter.
Executes the job on the right IBM Q device precised in the job in parameter.
This function is not meant to be used directly, please use ``runner.run(...)`` instead.

Args:
@@ -405,7 +405,7 @@ def extract_result(
@typechecked
def get_result_from_ibm_job_id(job_id: str) -> Result:
"""
Retrieve from IBM remote platform and parse the result of the job_id given in parameter.
Retrieves from IBM remote platform and parse the result of the job_id given in parameter.
If the job is still running, we wait (blocking) until it is DONE.

Args:
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -4,5 +4,5 @@ build-backend = "setuptools.build_meta"


[tool.setuptools_scm]
version_scheme = "guess-next-dev"
version_scheme = "post-release"
local_scheme = "no-local-version"