Skip to content

Commit

Permalink
revert requirements and actions
Browse files Browse the repository at this point in the history
  • Loading branch information
splch committed Mar 13, 2024
1 parent e8d9a3d commit e36643d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 197 deletions.
37 changes: 14 additions & 23 deletions .github/workflows/test_notebooks.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,24 @@
name: Test Notebooks

on:
push:
branches: [main]
pull_request:
branches: [main]
on: push

jobs:
test:
runs-on: ubuntu-22.04

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
- name: Check out code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install dependencies
run: |
pip install --upgrade pip
pip install --no-dependencies -r requirements.txt
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run notebook tests
run: python tests/test_notebooks.py
env:
IONQ_API_KEY: ${{ secrets.IONQ_API_KEY }}
- name: Run notebook tests
run: python tests/test_notebooks.py
env:
IONQ_API_KEY: ${{ secrets.IONQ_API_KEY }}
181 changes: 7 additions & 174 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,179 +1,12 @@
anyio
appdirs
appnope
argon2-cffi
argon2-cffi-bindings
arrow
asttokens
async-lru
attrs
autograd
autoray
Babel
beautifulsoup4
bleach
cachetools
certifi
cffi
charset-normalizer
qiskit
qiskit-ionq
cirq
cirq-aqt
cirq-core
cirq-ft
cirq-google
cirq-ionq
cirq-pasqal
cirq-rigetti
cirq-web
comm
contourpy
pennylane
pennylane-ionq
projectq
cuda-quantum
cycler
debugpy
decorator
defusedxml
Deprecated
dill
duet
executing
fastjsonschema
fonttools
fqdn
future
google-api-core
google-auth
googleapis-common-protos
grpcio
grpcio-status
h11
httpcore
httpx
idna
importlib_metadata
ipykernel
ipython
ipywidgets
iso8601
isoduration
jedi
Jinja2
json5
jsonpointer
jsonschema
jsonschema-specifications
jupyter
jupyter-console
jupyter-events
jupyter-lsp
jupyter_client
jupyter_core
jupyter_server
jupyter_server_terminals
jupyterlab
jupyterlab_pygments
jupyterlab_server
jupyterlab_widgets
kiwisolver
lark
MarkupSafe
matplotlib
matplotlib-inline
mistune
mpmath
msgpack
nbclient
nbconvert
nbformat
nest-asyncio
networkx
notebook
notebook_shim
numpy
overrides
packaging
pandas
pandocfilters
parso
pbr
PennyLane
PennyLane-IonQ
PennyLane_Lightning
pexpect
pillow
platformdirs
projectq
prometheus_client
prompt-toolkit
proto-plus
protobuf
psutil
ptyprocess
pure-eval
py
pyasn1
pyasn1-modules
pycparser
pydantic
Pygments
PyJWT
pylatexenc
pyparsing
pyquil
pyrsistent
python-dateutil
python-json-logger
python-rapidjson
pytz
PyYAML
pyzmq
qcs-api-client
qiskit
qiskit-ionq
qtconsole
QtPy
referencing
requests
retry
retrying
rfc3339
rfc3339-validator
rfc3986
rfc3986-validator
rpcq
rpds-py
rsa
ruamel.yaml
ruamel.yaml.clib
rustworkx
scipy
semantic-version
Send2Trash
six
sniffio
sortedcontainers
soupsieve
stack-data
stevedore
symengine
sympy
tenacity
terminado
tinycss2
toml
tornado
tqdm
traitlets
types-Deprecated
types-python-dateutil
types-retry
typing_extensions
tzdata
uri-template
urllib3
wcwidth
webcolors
webencodings
websocket-client
widgetsnbextension
wrapt
zipp
jupyter
# requests

0 comments on commit e36643d

Please sign in to comment.