Skip to content

Commit a418967

Browse files
committed
Merge branch 'release/v1.6.0'
2 parents 8ffa3d6 + b38e45b commit a418967

File tree

101 files changed

+570
-426
lines changed

Some content is hidden

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

101 files changed

+570
-426
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ target/
8484
# VSCode
8585
.vscode
8686

87+
# PyCharm
88+
.idea
89+
8790
# pyenv
8891
.python-version
8992

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,10 +237,10 @@ release_pip_osx:
237237
@ echo "# Creating osx compliant package (pip) #"
238238
@ echo "#-----------------------------------------------#"
239239
@ mkdir -p wheels
240-
@ conda create -n python_dev_38 python=3.8 -y; \
241-
conda activate python_dev_38 ; \
240+
@ conda create -n python_dev_39 python=3.9 -y; \
241+
conda activate python_dev_39 ; \
242242
pip install -r requirements.txt ; \
243-
rm -rf dist build; python3.8 setup.py bdist_wheel ; \
243+
rm -rf dist build; python3.9 setup.py bdist_wheel ; \
244244
cp dist/*whl wheels ; \
245245
rm -rf dist build
246246

docs/_images/example_02.png

704 Bytes
Loading

docs/_images/example_05.png

-3.76 KB
Loading

docs/_images/example_06.png

-3.74 KB
Loading

docs/_images/example_06b.png

-3.23 KB
Loading

docs/_images/example_07.png

13.2 KB
Loading

docs/_images/example_08.png

6.1 KB
Loading

docs/_images/example_13.png

-2 KB
Loading

docs/_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 */

0 commit comments

Comments
 (0)