Skip to content

Commit

Permalink
chore: update qiskit base dependency (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrorrivero authored Jan 2, 2024
1 parent 7633bd7 commit 3b69dd5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

![Platform](https://img.shields.io/badge/Platform-Linux%20%7C%20macOS%20%7C%20Windows-informational)
[![Python](https://img.shields.io/badge/Python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-informational)](https://www.python.org/)
[![Qiskit Terra](https://img.shields.io/badge/Qiskit%20Terra-%E2%89%A5%200.24.0-6133BD)](https://github.com/Qiskit/qiskit-terra)
[![Qiskit](https://img.shields.io/badge/Qiskit-%E2%89%A5%200.45.1-6133BD)](https://github.com/Qiskit/qiskit)
<br />
[![Tests](https://github.com/pedrorrivero/pyproject-qiskit/actions/workflows/test.yml/badge.svg)](https://github.com/pedrorrivero/pyproject-qiskit/actions/workflows/test.yml)
[![Coverage](https://coveralls.io/repos/github/pedrorrivero/pyproject-qiskit/badge.svg?branch=main)](https://coveralls.io/github/pedrorrivero/pyproject-qiskit?branch=main)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ classifiers = [
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"qiskit-terra >= 0.24.0",
"qiskit >= 0.45.1",
]

[project.optional-dependencies]
Expand Down Expand Up @@ -70,7 +70,7 @@ docs = [
notebook = [
"jupyter >= 1.0.0",
"notebook >= 6.4.12",
"qiskit-terra[visualization] >= 0.24.0",
"qiskit[visualization] >= 0.45.1",
"qiskit-aer >= 0.11.0",
"nbqa >= 1.3.1",
"treon >= 0.1.3",
Expand Down
2 changes: 1 addition & 1 deletion tools/extremal_dependency_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def mapfunc_dev(dep):
"""Load the development version(s) of certain Qiskit-related packages"""
# https://peps.python.org/pep-0440/#direct-references
return re.sub(
r"^(qiskit-(?:terra|nature)).*$",
r"^(qiskit).*$",
r"\1 @ git+https://github.com/Qiskit/\1.git",
dep,
)
Expand Down
2 changes: 1 addition & 1 deletion tools/travis_before_script.bash
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if [ "$STRATEGY" == "min" ]; then
fi

if [ "$STRATEGY" == "dev" ]; then
# Install Rust, which we'll need to build Qiskit Terra
# Install Rust, which we'll need to build Qiskit
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
fi

Expand Down

0 comments on commit 3b69dd5

Please sign in to comment.