Skip to content

Commit f4a82f2

Browse files
authored
Merge pull request #359 from ProjectQ-Framework/release/0.5.0
ProjectQ v0.5.0
2 parents 1513fb5 + 32513f1 commit f4a82f2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+6096
-1539
lines changed

.gitignore

Lines changed: 179 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,179 @@
1-
# python artifacts
2-
*.pyc
1+
# Python
2+
# Byte-compiled / optimized / DLL files
3+
__pycache__/
4+
*.py[cod]
5+
*$py.class
6+
7+
# C extensions
8+
*.so
9+
10+
# Distribution / packaging
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
pip-wheel-metadata/
25+
share/python-wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
MANIFEST
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.nox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*.cover
51+
*.py,cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
69+
# Scrapy stuff:
70+
.scrapy
71+
72+
# Sphinx documentation
73+
docs/_build/
74+
docs/doxygen
75+
76+
# PyBuilder
77+
target/
78+
79+
# Jupyter Notebook
80+
.ipynb_checkpoints
81+
82+
# IPython
83+
profile_default/
84+
ipython_config.py
85+
86+
# pyenv
87+
# For a library or package, you might want to ignore these files since the code is
88+
# intended to run in multiple environments; otherwise, check them in:
89+
# .python-version
90+
91+
# pipenv
92+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
94+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
95+
# install all needed dependencies.
96+
#Pipfile.lock
97+
98+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
99+
__pypackages__/
100+
101+
# Celery stuff
102+
celerybeat-schedule
103+
celerybeat.pid
104+
105+
# SageMath parsed files
106+
*.sage.py
107+
108+
# Environments
109+
.env
110+
.venv
111+
env/
112+
venv/
113+
ENV/
114+
env.bak/
115+
venv.bak/
116+
117+
# Spyder project settings
118+
.spyderproject
119+
.spyproject
120+
121+
# Rope project settings
122+
.ropeproject
123+
124+
# mkdocs documentation
125+
/site
126+
127+
# mypy
128+
.mypy_cache/
129+
.dmypy.json
130+
dmypy.json
131+
132+
# Pyre type checker
133+
.pyre/
134+
135+
# pytype static type analyzer
136+
.pytype/
137+
138+
# ==============================================================================
139+
# Prerequisites
140+
*.d
141+
142+
# C++
143+
# Compiled Object files
144+
*.slo
145+
*.lo
146+
*.o
147+
*.obj
148+
149+
# Precompiled Headers
150+
*.gch
151+
*.pch
152+
153+
# Compiled Dynamic libraries
154+
*.so
155+
*.dylib
156+
*.dll
157+
158+
# Fortran module files
159+
*.mod
160+
*.smod
161+
162+
# Compiled Static libraries
163+
*.lai
164+
*.la
165+
*.a
166+
*.lib
167+
168+
# Executables
169+
*.exe
170+
*.out
171+
*.app
172+
173+
# ==============================================================================
174+
175+
# Windows artifacts
176+
thumbs.db
177+
178+
# Mac OSX artifacts
179+
*.DS_Store

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ install:
4242
- if [ "${PYTHON:0:1}" = "3" ]; then pip$PY install dormouse; fi
4343
- pip$PY install -e .
4444

45+
before_script:
46+
- "echo 'backend: Agg' > matplotlibrc"
47+
4548
# command to run tests
4649
script: export OMP_NUM_THREADS=1 && pytest projectq --cov projectq
4750

0 commit comments

Comments
 (0)