-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #617 from atilag/stable-0.5.5
Stable 0.5.5
- Loading branch information
Showing
93 changed files
with
4,876 additions
and
2,257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,23 @@ If you have an idea for a new feature please open a ticket labeled as | |
``enhancement``. If you could also add a piece of code with the idea | ||
or a partial implementation it would be awesome. | ||
|
||
Contributor License Agreement | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
We'd love to accept your code! Before we can, we have to get a few legal | ||
requirements sorted out. By signing a contributor license agreement (CLA), we | ||
ensure that the community is free to use your contributions. | ||
|
||
When you contribute to the QISKit project with a new pull request, a bot will | ||
evaluate whether you have signed the CLA. If required, the bot will comment on | ||
the pull request, including a link to accept the agreement. The | ||
`individual CLA <https://qiskit.org/license/qiskit-cla.pdf>`_ document is | ||
available for review as a PDF. | ||
|
||
NOTE: If you work for a company that wants to allow you to contribute your work, | ||
then you'll need to sign a `corporate CLA <https://qiskit.org/license/qiskit-corporate-cla.pdf>`_ | ||
and email it to us at [email protected]. | ||
|
||
Code | ||
---- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Language specific configuration file, inheriting from the main /doc | ||
conf.py file and adjusting the variables that depend on the language. | ||
""" | ||
|
||
import os | ||
import sys | ||
|
||
sys.path.insert(0, os.path.abspath('..')) | ||
from conf import * | ||
|
||
language = 'de' | ||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '_autodoc/modules.rst'] | ||
|
||
html_theme_path = ['../'] | ||
html_logo = '../theme/static/qiskit-logo-white-no-margin.gif' | ||
html_favicon = '../theme/static/favicon.ico' |
Oops, something went wrong.