Skip to content

Commit

Permalink
Merge branch 'release/1.1.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
cnheider committed Jul 26, 2023
2 parents 8456721 + bbfc997 commit 290b7c3
Show file tree
Hide file tree
Showing 51 changed files with 14,151 additions and 13,626 deletions.
24 changes: 16 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ repos:
hooks:
- id: black
language_version: python3.10
- repo: local
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.902
hooks:
- id: pytest-check
name: pytest-check
entry: pytest
language: system
pass_filenames: false
always_run: true
- id: mypy
verbose: true
#exclude: ^tests/
entry: bash -c 'mypy "$@" || true' -- # only print
#args: [ --strict ]
- repo: local
hooks:
- id: flake8-check1 # stop the build if there are Python syntax errors or undefined names
Expand All @@ -36,4 +36,12 @@ repos:
# entry: docs/make.sh
# language: script
# types: [ python ]
# pass_filenames: false
# pass_filenames: false
- repo: local
hooks:
- id: pytest-check
name: pytest-check
entry: pytest
language: system
pass_filenames: false
always_run: true
1 change: 0 additions & 1 deletion benchmarks/pqp_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import numpy
from benchmarks.benchmark_func import benchmark_func

from draugr.multiprocessing_utilities.pooled_queue_processor import (
PooledQueueProcessor,
PooledQueueTask,
Expand Down
235 changes: 132 additions & 103 deletions docs/github/html/_modules/warg/os/os_platform.html

Large diffs are not rendered by default.

23 changes: 12 additions & 11 deletions docs/github/html/_static/_sphinx_javascript_frameworks_compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $u = _.noConflict();
*
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
*/
jQuery.urldecode = function(x) {
jQuery.urldecode = function (x) {
if (!x) {
return x
}
Expand All @@ -37,7 +37,7 @@ jQuery.urlencode = encodeURIComponent;
* current request. Multiple values per key are supported,
* it will always return arrays of strings for the value parts.
*/
jQuery.getQueryParameters = function(s) {
jQuery.getQueryParameters = function (s) {
if (typeof s === 'undefined')
s = document.location.search;
var parts = s.substr(s.indexOf('?') + 1).split('&');
Expand All @@ -58,7 +58,7 @@ jQuery.getQueryParameters = function(s) {
* highlight a given string on a jquery object by wrapping it in
* span elements with the given class name.
*/
jQuery.fn.highlightText = function(text, className) {
jQuery.fn.highlightText = function (text, className) {
function highlight(node, addItems) {
if (node.nodeType === 3) {
var val = node.nodeValue;
Expand Down Expand Up @@ -89,18 +89,19 @@ jQuery.fn.highlightText = function(text, className) {
rect.setAttribute('class', className);
addItems.push({
"parent": node.parentNode,
"target": rect});
"target": rect
});
}
}
}
else if (!jQuery(node).is("button, select, textarea")) {
jQuery.each(node.childNodes, function() {
} else if (!jQuery(node).is("button, select, textarea")) {
jQuery.each(node.childNodes, function () {
highlight(this, addItems);
});
}
}

var addItems = [];
var result = this.each(function() {
var result = this.each(function () {
highlight(this, addItems);
});
for (var i = 0; i < addItems.length; ++i) {
Expand All @@ -114,7 +115,7 @@ jQuery.fn.highlightText = function(text, className) {
* This will be supported until firefox bug is fixed.
*/
if (!jQuery.browser) {
jQuery.uaMatch = function(ua) {
jQuery.uaMatch = function (ua) {
ua = ua.toLowerCase();

var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
Expand All @@ -125,8 +126,8 @@ if (!jQuery.browser) {
[];

return {
browser: match[ 1 ] || "",
version: match[ 2 ] || "0"
browser: match[1] || "",
version: match[2] || "0"
};
};
jQuery.browser = {};
Expand Down
85 changes: 51 additions & 34 deletions docs/github/html/_static/alabaster.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,31 @@ div.body h6 {
padding: 0;
}

div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; }
div.body h2 { font-size: 180%; }
div.body h3 { font-size: 150%; }
div.body h4 { font-size: 130%; }
div.body h5 { font-size: 100%; }
div.body h6 { font-size: 100%; }
div.body h1 {
margin-top: 0;
padding-top: 0;
font-size: 240%;
}

div.body h2 {
font-size: 180%;
}

div.body h3 {
font-size: 150%;
}

div.body h4 {
font-size: 130%;
}

div.body h5 {
font-size: 100%;
}

div.body h6 {
font-size: 100%;
}

a.headerlink {
color: #DDD;
Expand Down Expand Up @@ -498,63 +517,61 @@ a:hover tt, a:hover code {
@media screen and (max-width: 870px) {

div.sphinxsidebar {
display: none;
display: none;
}

div.document {
width: 100%;
width: 100%;

}

div.documentwrapper {
margin-left: 0;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
}

div.bodywrapper {
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
}

ul {
margin-left: 0;
margin-left: 0;
}

li > ul {
li > ul {
/* Matches the 30px from the "ul, ol" selector above */
margin-left: 30px;
}
margin-left: 30px;
}

.document {
width: auto;
width: auto;
}

.footer {
width: auto;
width: auto;
}

.bodywrapper {
margin: 0;
margin: 0;
}

.footer {
width: auto;
width: auto;
}

.github {
display: none;
}



}



@media screen and (max-width: 875px) {

body {
Expand Down Expand Up @@ -633,7 +650,7 @@ a:hover tt, a:hover code {
/* misc. */

.revsys-inline {
display: none!important;
display: none !important;
}

/* Make nested-list/multi-paragraph items look better in Releases changelog
Expand All @@ -646,11 +663,11 @@ div#changelog > div.section > ul > li > p:only-child {

/* Hide fugly table cell borders in ..bibliography:: directive output */
table.docutils.citation, table.docutils.citation td, table.docutils.citation th {
border: none;
/* Below needed in some edge cases; if not applied, bottom shadows appear */
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
/* Below needed in some edge cases; if not applied, bottom shadows appear */
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}


Expand Down Expand Up @@ -685,11 +702,11 @@ nav#rellinks {
float: right;
}

nav#rellinks li+li:before {
nav#rellinks li + li:before {
content: "|";
}

nav#breadcrumbs li+li:before {
nav#breadcrumbs li + li:before {
content: "\00BB";
}

Expand Down
Loading

0 comments on commit 290b7c3

Please sign in to comment.