Skip to content
This repository was archived by the owner on Jun 12, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ ignore-mixin-members=yes
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis. It
# supports qualified module names, as well as Unix pattern matching.
ignored-modules=matplotlib.cm,numpy.random,retworkx
ignored-modules=matplotlib.cm,numpy.random,retworkx,qiskit

# List of class names for which member attributes should not be checked (useful
# for classes with dynamically set attributes). This supports the use of
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include qiskit/ignis/VERSION.txt
include qiskit_ignis/VERSION.txt
include README.md
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@


version_path = os.path.abspath(
os.path.join(
os.path.join(
os.path.join(os.path.dirname(__file__), 'qiskit'), 'ignis'),
'VERSION.txt'))
os.path.join(os.path.dirname(__file__), 'qiskit_ignis',
'VERSION.txt'))
with open(version_path, 'r') as fd:
version = fd.read().rstrip()

Expand Down Expand Up @@ -76,7 +74,7 @@
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum",
packages=setuptools.find_namespace_packages(exclude=['test*']),
packages=setuptools.find_packages(exclude=['test*']),
extras_require={
'visualization': ['matplotlib>=2.1'],
'cvx': ['cvxpy>=1.0.15'],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ deps =
setuptools>=40.1.0
pyfakefs
commands =
pycodestyle qiskit/ignis test/
pylint -rn -j 0 --rcfile={toxinidir}/.pylintrc qiskit/ignis test/
pycodestyle qiskit_ignis test/
pylint -rn -j 0 --rcfile={toxinidir}/.pylintrc qiskit_ignis test/

[testenv:docs]
basepython = python3
Expand Down