Skip to content

Commit 7cf45fc

Browse files
v0.12
Testing deployment to PyPi
1 parent 8157b0a commit 7cf45fc

25 files changed

Lines changed: 2146 additions & 82 deletions

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get -qq update && apt-get -qq install -y \
1010
wget \
1111
> /dev/null
1212

13-
RUN pip install --no-cache-dir git+https://github.com/SheffieldSolar/PV_Live-API.git@0.11 > /dev/null
13+
RUN pip install --no-cache-dir git+https://github.com/SheffieldSolar/PV_Live-API.git@0.12 > /dev/null
1414

1515
#RUN pip install --no-cache-dir -r /pv_live/requirements.txt > /dev/null
1616
#COPY . /pv_live/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# PV_Live
33
A Python implementation of the PV_Live web API. See https://www.solar.sheffield.ac.uk/pvlive/
44

5-
**Latest Version: 0.11**
5+
**Latest Version: 0.12**
66

77
**New! Updated 2022-07-19 to use the v4 PV_Live API.**
88

428 Bytes
Binary file not shown.

docs/build/doctrees/index.doctree

47 Bytes
Binary file not shown.
7.03 KB
Binary file not shown.

docs/build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: cb2a6bc7fffba35f31ac94855737b628
3+
config: f978ded425e77db1cd389382a36d4599
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/build/html/_static/basic.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -731,8 +731,9 @@ dl.glossary dt {
731731

732732
.classifier:before {
733733
font-style: normal;
734-
margin: 0.5em;
734+
margin: 0 0.5em;
735735
content: ":";
736+
display: inline-block;
736737
}
737738

738739
abbr, acronym {
@@ -756,6 +757,7 @@ span.pre {
756757
-ms-hyphens: none;
757758
-webkit-hyphens: none;
758759
hyphens: none;
760+
white-space: nowrap;
759761
}
760762

761763
div[class*="highlight-"] {
@@ -819,7 +821,7 @@ div.code-block-caption code {
819821

820822
table.highlighttable td.linenos,
821823
span.linenos,
822-
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
824+
div.highlight span.gp { /* gp: Generic.Prompt */
823825
user-select: none;
824826
-webkit-user-select: text; /* Safari fallback only */
825827
-webkit-user-select: none; /* Chrome/Safari */

docs/build/html/_static/classic.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- classic theme.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

docs/build/html/_static/doctools.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -264,6 +264,9 @@ var Documentation = {
264264
hideSearchWords : function() {
265265
$('#searchbox .highlight-link').fadeOut(300);
266266
$('span.highlighted').removeClass('highlighted');
267+
var url = new URL(window.location);
268+
url.searchParams.delete('highlight');
269+
window.history.replaceState({}, '', url);
267270
},
268271

269272
/**
@@ -301,12 +304,14 @@ var Documentation = {
301304
window.location.href = prevHref;
302305
return false;
303306
}
307+
break;
304308
case 39: // right
305309
var nextHref = $('link[rel="next"]').prop('href');
306310
if (nextHref) {
307311
window.location.href = nextHref;
308312
return false;
309313
}
314+
break;
310315
}
311316
}
312317
});

docs/build/html/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '0.11',
3+
VERSION: '0.12',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

0 commit comments

Comments
 (0)