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

Commit

Permalink
Merge pull request #3 from nfwvogt/main
Browse files Browse the repository at this point in the history
Updates to dependencies and minor version bump
  • Loading branch information
nfwvogt authored Mar 11, 2021
2 parents ebca060 + 81a1ddd commit 0880d04
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
python -m pip install pytest flake8 flake8-bugbear flake8-docstrings flake8-annotations darglint mypy
- name: Test with pytest
run: |
pip install pytest
pip install -e ./
pytest
- name: Lint with flake8
Expand Down
17 changes: 17 additions & 0 deletions .mock/pyquest_cffi/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""Install qoqo_pyquest"""
# Copyright © 2019-2021 HQS Quantum Simulations GmbH. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
# in compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations under
# the License.
from setuptools import find_packages, setup

setup(name='pyquest_cffi',
version='v100.1.2',
)
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# qoqo-pyquest

![Read the Docs](https://img.shields.io/readthedocs/qoqo_pyquest)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/HQSquantumsimulations/qoqo_pyquest/ci_tests)
![PyPI](https://img.shields.io/pypi/v/qoqo_pyquest)
![PyPI - License](https://img.shields.io/pypi/l/qoqo_pyquest)
![PyPI - Format](https://img.shields.io/pypi/format/qoqo_pyquest)

PyQuEST interface for the qoqo quantum toolkit by [HQS Quantum Simulations](https://quantumsimulations.de).

qoqo-pyquest provides the PyQuestBackend class that allows users to simulate a qoqo circuit.
Expand Down
2 changes: 1 addition & 1 deletion qoqo_pyquest/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
# or implied. See the License for the specific language governing permissions and limitations under
# the License.
"""qoqo_pyquest version information"""
__version__ = 'v0.1.0'
__version__ = 'v0.1.2'
6 changes: 2 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
hqsbase>=0.7.0
qoqo>=0.2.2
qoqo>=0.2.4
numpy
pytest
networkx
pyyaml
pyquest_cffi
.mock/pyquest_cffi/
sphinx >= 1.4
pygments
recommonmark
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@

install_requires = [
'hqsbase>=0.7.0',
'qoqo>=0.2.2',
'qoqo>=0.2.4',
'pyquest_cffi>=3.1.0',
'numpy',
'pytest',
'networkx',
]

authors = 'HQS Quantum Simulations'
Expand Down

0 comments on commit 0880d04

Please sign in to comment.