Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
vabarbosa committed Nov 28, 2023
2 parents a7ae345 + 3892dce commit 2946e8e
Show file tree
Hide file tree
Showing 11 changed files with 316 additions and 188 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -34,10 +34,10 @@ jobs:

- run: npm ci

- name: Install Python 3.8
uses: actions/setup-python@v2
- name: Install Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: '3.10'

- name: Load pip cache
uses: actions/cache@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -26,10 +26,10 @@ jobs:

- run: npm ci

- name: Install Python 3.8
uses: actions/setup-python@v2
- name: Install Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: '3.10'

- name: Load pip cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ The textbook is intended for use as a university quantum algorithms course suppl

## Getting Started
### Pre-requisites
1. Python 3.8 environment with `textbook_converter` requirements installed
1. Python 3.10 environment with `textbook_converter` requirements installed

```
$ cd platypus/converter/textbook-converter
Expand Down
21 changes: 1 addition & 20 deletions converter/textbook-converter/requirements-test.txt
@@ -1,21 +1,2 @@
cython==0.29.32
cmake==3.24.1
nbqa==1.3.1
pylint==2.14.3
pylint==3.0.2
scour==0.38.2
qiskit==0.39.0
qiskit-nature==0.4.1
qiskit-machine-learning==0.4.0
qiskit-finance==0.3.2
scikit-learn==1.0.1
tensorflow==2.9.3
matplotlib==3.5.2
bokeh==3.0.2
pyscf==2.0.1
pylatexenc==2.10
ipywidgets==8.0.1
qiskit-machine-learning[sparse]
qiskit-experiments==0.4.0
git+https://github.com/qiskit-community/qiskit-textbook.git#subdirectory=qiskit-textbook-src
git+https://github.com/anedumla/quantum_linear_solvers
git+https://github.com/NCCR-SPIN/topological_codes.git
2 changes: 1 addition & 1 deletion converter/textbook-converter/setup.py
Expand Up @@ -31,7 +31,7 @@
install_requires=requirements,
packages=find_packages(include=['textbook_converter']),
url='https://github.com/Qiskit/platypus/tree/main/converter/textbook-converter',
python_requires='>=3.6',
python_requires='>=3.10',
entry_points={
'nbconvert.exporters': [
'textbook = textbook_converter:TextbookExporter',
Expand Down
4 changes: 2 additions & 2 deletions frontend/vue/components/OneXP/OneXPBanner.vue
Expand Up @@ -4,12 +4,12 @@
<span
class="one-xp-banner__copy"
v-text="
`🎉 Qiskit is getting a new learning experience on IBM Quantum!`
`🎉 Starting on November 29, 2023 Qiskit Learning Resource will only live on IBM Quantum`
"
/>
<a
class="one-xp-banner__cta"
href="https://learning.quantum-computing.ibm.com"
href="https://learning.quantum.ibm.com"
rel="noopener"
target="_blank"
@click="onClick"
Expand Down
4 changes: 2 additions & 2 deletions frontend/vue/components/UserAccount/AccountAdmin.vue
Expand Up @@ -31,13 +31,13 @@
<ul class="account-admin__info__steps">
<li>
{{ $translate("Create an account in") }}
<BasicLink url="https://quantum-computing.ibm.com/">
<BasicLink url="https://quantum.ibm.com/">
IBM Quantum.
</BasicLink>
</li>
<li>
{{ $translate("Access your") }}
<BasicLink url="https://quantum-computing.ibm.com/account">
<BasicLink url="https://quantum.ibm.com/account">
{{ $translate("account page") }}
</BasicLink>
{{ $translate("and copy the value from the API token input.") }}
Expand Down

0 comments on commit 2946e8e

Please sign in to comment.