Skip to content

Commit

Permalink
0.15 release (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
josh146 authored Apr 20, 2021
1 parent aad1863 commit 7fd8b1c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 21 deletions.
8 changes: 1 addition & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Release 0.15.0

### New features since last release

### Breaking changes

* For compatibility with PennyLane v0.15, the `analytic` keyword argument
Expand All @@ -14,15 +12,11 @@
* PennyLane-Qiskit has been upgraded to work with Qiskit version 0.25.
[(#132)](https://github.com/XanaduAI/pennylane-qiskit/pull/132)

### Documentation

### Bug fixes

### Contributors

This release contains contributions from (in alphabetical order):

Olivia Di Matteo, Josh Izaac, Antal Száva
Christina Lee, Olivia Di Matteo, Josh Izaac, Antal Száva

---

Expand Down
1 change: 1 addition & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
docutils==0.16
sphinxcontrib-bibtex
ipykernel
nbsphinx
Expand Down
5 changes: 4 additions & 1 deletion doc/xanadu_theme/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,13 @@
</li>
<li class="nav-item active">
<a class="nav-link" href="https://pennylane.ai/plugins.html">Plugins</a>
<span class="sr-only">(current)</span>
</li>
<li class="nav-item">
<a class="nav-link" href="https://pennylane.readthedocs.io">Documentation</a>
<span class="sr-only">(current)</span>
</li>
<li class="nav-item">
<a class="nav-link" href="https://pennylane.ai/blog">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://qhack.ai"><img src="https://pennylane.ai/img/qhack_plain_black.png"></a>
Expand Down
1 change: 1 addition & 0 deletions doc/xanadu_theme/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
{# Do this so that bootstrap is included before the main css file #}
{%- block htmltitle %}
<link href="https://fonts.googleapis.com/css?family=Noto+Serif" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">

<!-- Font Awesome -->
Expand Down
14 changes: 3 additions & 11 deletions doc/xanadu_theme/static/xanadu.css_t
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
/* Sphinx themes
-------------------------------------------------- */
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}



body {
/*background-color: #edf0f2;*/
Expand Down Expand Up @@ -92,7 +84,7 @@ h1, h2, h3, h4, h5, h6 {
color: black;
font-weight: normal;
padding: 0;
font-family: 'Product Sans', 'Roboto', sans-serif!important;
font-family: 'Noto Sans', 'Roboto', sans-serif!important;
}

h1, h2, h3 {
Expand Down Expand Up @@ -371,7 +363,7 @@ div.sphinxsidebar p {
margin: 20px 0px 10px 21px;
font-weight: normal;
padding: 0;
font-family: 'Product Sans', 'Roboto', sans-serif!important;
font-family: 'Noto Sans', 'Roboto', sans-serif!important;
font-size: 24px;
color: #515151;
/*text-align: center;*/
Expand Down Expand Up @@ -2012,7 +2004,7 @@ footer.page-footer .footer-copyright {
margin-left: 20px;
font-size: initial;
color: black;
font-family: 'Product Sans', 'Roboto', sans-serif !important;
font-family: 'Noto Sans', 'Roboto', sans-serif !important;
margin-bottom: -9px;
border-bottom: 3px solid;
border-bottom-color: white;
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
qiskit>=0.25
git+https://github.com/PennyLaneAI/pennylane.git
pennylane>=0.15
numpy
networkx>=2.2;python_version>'3.5'
networkx>=2.2,<2.4;python_version=='3.5'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

requirements = [
"qiskit>=0.25",
"pennylane @ git+https://github.com/PennyLaneAI/pennylane.git@master",
"pennylane>=0.15",
"numpy",
"networkx>=2.2;python_version>'3.5'",
# Networkx 2.4 is the final version with python 3.5 support.
Expand Down

0 comments on commit 7fd8b1c

Please sign in to comment.