Skip to content

Commit 83b1362

Browse files
committed
Deployed 6a02ef5 with MkDocs version: 1.6.1
1 parent d9c36c9 commit 83b1362

File tree

11 files changed

+572
-512
lines changed

11 files changed

+572
-512
lines changed

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
<link rel="icon" href="/assets/images/favicon.png">
12-
<meta name="generator" content="mkdocs-1.3.1, mkdocs-material-8.2.16">
12+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-8.2.16">
1313

1414

1515

assets/_mkdocstrings.css

Lines changed: 150 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11

2-
/* Don't capitalize names. */
3-
h5.doc-heading {
4-
text-transform: none !important;
5-
}
6-
7-
/* Avoid breaking parameters name, etc. in table cells. */
2+
/* Avoid breaking parameter names, etc. in table cells. */
83
.doc-contents td code {
94
word-break: normal !important;
105
}
116

12-
/* For pieces of Markdown rendered in table cells. */
13-
.doc-contents td p {
14-
margin-top: 0 !important;
15-
margin-bottom: 0 !important;
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
1611
}
1712

1813
/* Max width for docstring sections tables. */
@@ -21,16 +16,156 @@ h5.doc-heading {
2116
display: table !important;
2217
width: 100%;
2318
}
19+
2420
.doc .md-typeset__table tr {
2521
display: table-row;
2622
}
2723

28-
/* Avoid line breaks in rendered fields. */
29-
.field-body p {
30-
display: inline;
31-
}
32-
3324
/* Defaults in Spacy table style. */
3425
.doc-param-default {
3526
float: right;
3627
}
28+
29+
/* Parameter headings must be inline, not blocks. */
30+
.doc-heading-parameter {
31+
display: inline;
32+
}
33+
34+
/* Prefer space on the right, not the left of parameter permalinks. */
35+
.doc-heading-parameter .headerlink {
36+
margin-left: 0 !important;
37+
margin-right: 0.2rem;
38+
}
39+
40+
/* Backward-compatibility: docstring section titles in bold. */
41+
.doc-section-title {
42+
font-weight: bold;
43+
}
44+
45+
/* Backlinks crumb separator. */
46+
.doc-backlink-crumb {
47+
display: inline-flex;
48+
gap: .2rem;
49+
white-space: nowrap;
50+
align-items: center;
51+
vertical-align: middle;
52+
}
53+
.doc-backlink-crumb:not(:first-child)::before {
54+
background-color: var(--md-default-fg-color--lighter);
55+
content: "";
56+
display: inline;
57+
height: 1rem;
58+
--md-path-icon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6z"/></svg>');
59+
-webkit-mask-image: var(--md-path-icon);
60+
mask-image: var(--md-path-icon);
61+
width: 1rem;
62+
}
63+
.doc-backlink-crumb.last {
64+
font-weight: bold;
65+
}
66+
67+
/* Symbols in Navigation and ToC. */
68+
:root, :host,
69+
[data-md-color-scheme="default"] {
70+
--doc-symbol-parameter-fg-color: #df50af;
71+
--doc-symbol-attribute-fg-color: #953800;
72+
--doc-symbol-function-fg-color: #8250df;
73+
--doc-symbol-method-fg-color: #8250df;
74+
--doc-symbol-class-fg-color: #0550ae;
75+
--doc-symbol-module-fg-color: #5cad0f;
76+
77+
--doc-symbol-parameter-bg-color: #df50af1a;
78+
--doc-symbol-attribute-bg-color: #9538001a;
79+
--doc-symbol-function-bg-color: #8250df1a;
80+
--doc-symbol-method-bg-color: #8250df1a;
81+
--doc-symbol-class-bg-color: #0550ae1a;
82+
--doc-symbol-module-bg-color: #5cad0f1a;
83+
}
84+
85+
[data-md-color-scheme="slate"] {
86+
--doc-symbol-parameter-fg-color: #ffa8cc;
87+
--doc-symbol-attribute-fg-color: #ffa657;
88+
--doc-symbol-function-fg-color: #d2a8ff;
89+
--doc-symbol-method-fg-color: #d2a8ff;
90+
--doc-symbol-class-fg-color: #79c0ff;
91+
--doc-symbol-module-fg-color: #baff79;
92+
93+
--doc-symbol-parameter-bg-color: #ffa8cc1a;
94+
--doc-symbol-attribute-bg-color: #ffa6571a;
95+
--doc-symbol-function-bg-color: #d2a8ff1a;
96+
--doc-symbol-method-bg-color: #d2a8ff1a;
97+
--doc-symbol-class-bg-color: #79c0ff1a;
98+
--doc-symbol-module-bg-color: #baff791a;
99+
}
100+
101+
code.doc-symbol {
102+
border-radius: .1rem;
103+
font-size: .85em;
104+
padding: 0 .3em;
105+
font-weight: bold;
106+
}
107+
108+
code.doc-symbol-parameter,
109+
a code.doc-symbol-parameter {
110+
color: var(--doc-symbol-parameter-fg-color);
111+
background-color: var(--doc-symbol-parameter-bg-color);
112+
}
113+
114+
code.doc-symbol-parameter::after {
115+
content: "param";
116+
}
117+
118+
code.doc-symbol-attribute,
119+
a code.doc-symbol-attribute {
120+
color: var(--doc-symbol-attribute-fg-color);
121+
background-color: var(--doc-symbol-attribute-bg-color);
122+
}
123+
124+
code.doc-symbol-attribute::after {
125+
content: "attr";
126+
}
127+
128+
code.doc-symbol-function,
129+
a code.doc-symbol-function {
130+
color: var(--doc-symbol-function-fg-color);
131+
background-color: var(--doc-symbol-function-bg-color);
132+
}
133+
134+
code.doc-symbol-function::after {
135+
content: "func";
136+
}
137+
138+
code.doc-symbol-method,
139+
a code.doc-symbol-method {
140+
color: var(--doc-symbol-method-fg-color);
141+
background-color: var(--doc-symbol-method-bg-color);
142+
}
143+
144+
code.doc-symbol-method::after {
145+
content: "meth";
146+
}
147+
148+
code.doc-symbol-class,
149+
a code.doc-symbol-class {
150+
color: var(--doc-symbol-class-fg-color);
151+
background-color: var(--doc-symbol-class-bg-color);
152+
}
153+
154+
code.doc-symbol-class::after {
155+
content: "class";
156+
}
157+
158+
code.doc-symbol-module,
159+
a code.doc-symbol-module {
160+
color: var(--doc-symbol-module-fg-color);
161+
background-color: var(--doc-symbol-module-bg-color);
162+
}
163+
164+
code.doc-symbol-module::after {
165+
content: "mod";
166+
}
167+
168+
.doc-signature .autorefs {
169+
color: inherit;
170+
border-bottom: 1px dotted currentcolor;
171+
}

changelog/index.html

Lines changed: 59 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
<link rel="icon" href="../assets/images/favicon.png">
12-
<meta name="generator" content="mkdocs-1.3.1, mkdocs-material-8.2.16">
12+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-8.2.16">
1313

1414

1515

@@ -257,15 +257,29 @@
257257
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
258258

259259
<li class="md-nav__item">
260-
<a href="#100" class="md-nav__link">
261-
1.0.0
260+
<a href="#110-2025-03-25" class="md-nav__link">
261+
[1.1.0] - 2025-03-25
262262
</a>
263263

264264
</li>
265265

266266
<li class="md-nav__item">
267-
<a href="#0211-2022-01-21" class="md-nav__link">
268-
0.21.1 - 2022-01-21
267+
<a href="#101-2024-01-23" class="md-nav__link">
268+
1.0.1 - 2024-01-23
269+
</a>
270+
271+
</li>
272+
273+
<li class="md-nav__item">
274+
<a href="#100-2023-02-24" class="md-nav__link">
275+
1.0.0 - 2023-02-24
276+
</a>
277+
278+
</li>
279+
280+
<li class="md-nav__item">
281+
<a href="#0211-2023-01-21" class="md-nav__link">
282+
0.21.1 - 2023-01-21
269283
</a>
270284

271285
</li>
@@ -581,15 +595,29 @@
581595
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
582596

583597
<li class="md-nav__item">
584-
<a href="#100" class="md-nav__link">
585-
1.0.0
598+
<a href="#110-2025-03-25" class="md-nav__link">
599+
[1.1.0] - 2025-03-25
586600
</a>
587601

588602
</li>
589603

590604
<li class="md-nav__item">
591-
<a href="#0211-2022-01-21" class="md-nav__link">
592-
0.21.1 - 2022-01-21
605+
<a href="#101-2024-01-23" class="md-nav__link">
606+
1.0.1 - 2024-01-23
607+
</a>
608+
609+
</li>
610+
611+
<li class="md-nav__item">
612+
<a href="#100-2023-02-24" class="md-nav__link">
613+
1.0.0 - 2023-02-24
614+
</a>
615+
616+
</li>
617+
618+
<li class="md-nav__item">
619+
<a href="#0211-2023-01-21" class="md-nav__link">
620+
0.21.1 - 2023-01-21
593621
</a>
594622

595623
</li>
@@ -843,13 +871,32 @@ <h1 id="changelog">Changelog</h1>
843871
<p>All notable changes to this project will be documented in this file.</p>
844872
<p>The format is based on <a href="https://keepachangelog.com/en/1.0.0/">Keep a Changelog</a>, and this
845873
project adheres to <a href="https://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.</p>
846-
<h2 id="100"><a href="https://github.com/theskumar/python-dotenv/compare/v0.21.0...v1.0.0">1.0.0</a></h2>
874+
<h2 id="110-2025-03-25">[1.1.0] - 2025-03-25</h2>
875+
<p><strong>Feature</strong>
876+
- Add support for python 3.13
877+
- Enhance <code>dotenv run</code>, switch to <code>execvpe</code> for better resource management and signal handling (<a href="https://github.com/theskumar/python-dotenv/issues/523">#523</a>) by <a href="https://github.com/eekstunt">@eekstunt</a></p>
878+
<p><strong>Fixed</strong>
879+
- <code>find_dotenv</code> and <code>load_dotenv</code> now correctly looks up at the current directory when running in debugger or pdb (<a href="https://github.com/theskumar/python-dotenv/issues/553">#553</a> by <a href="https://github.com/zueve">@randomseed42</a>)</p>
880+
<p><strong>Misc</strong>
881+
- Drop support for Python 3.8</p>
882+
<h2 id="101-2024-01-23"><a href="https://github.com/theskumar/python-dotenv/compare/v1.0.0...v1.0.1">1.0.1</a> - 2024-01-23</h2>
883+
<p><strong>Fixed</strong></p>
884+
<ul>
885+
<li>Gracefully handle code which has been imported from a zipfile (<a href="https://github.com/theskumar/python-dotenv/issues/456">#456</a> by <a href="https://github.com/samwyma">@samwyma</a>)</li>
886+
<li>Allow modules using <code>load_dotenv</code> to be reloaded when launched in a separate thread ([#497] by <a href="https://github.com/freddyaboulton">@freddyaboulton</a>)</li>
887+
<li>Fix file not closed after deletion, handle error in the rewrite function (<a href="https://github.com/theskumar/python-dotenv/issues/469">#469</a> by <a href="https://github.com/Qwerty-133">@Qwerty-133</a>)</li>
888+
</ul>
889+
<p><strong>Misc</strong>
890+
* Use pathlib.Path in tests (<a href="https://github.com/theskumar/python-dotenv/issues/466">#466</a> by <a href="https://github.com/eumiro">@eumiro</a>)
891+
* Fix year in release date in changelog.md (<a href="https://github.com/theskumar/python-dotenv/issues/454">#454</a> by <a href="https://github.com/jankislinger">@jankislinger</a>)
892+
* Use https in README links (<a href="https://github.com/theskumar/python-dotenv/issues/474">#474</a> by <a href="https://github.com/Nicals">@Nicals</a>)</p>
893+
<h2 id="100-2023-02-24"><a href="https://github.com/theskumar/python-dotenv/compare/v0.21.0...v1.0.0">1.0.0</a> - 2023-02-24</h2>
847894
<p><strong>Fixed</strong></p>
848895
<ul>
849896
<li>Drop support for python 3.7, add python 3.12-dev (#449 by <a href="https://github.com/theskumar">@theskumar</a>)</li>
850897
<li>Handle situations where the cwd does not exist. (#446 by <a href="https://github.com/jctanner">@jctanner</a>)</li>
851898
</ul>
852-
<h2 id="0211-2022-01-21"><a href="https://github.com/theskumar/python-dotenv/compare/v0.21.0...v0.21.1">0.21.1</a> - 2022-01-21</h2>
899+
<h2 id="0211-2023-01-21"><a href="https://github.com/theskumar/python-dotenv/compare/v0.21.0...v0.21.1">0.21.1</a> - 2023-01-21</h2>
853900
<p><strong>Added</strong></p>
854901
<ul>
855902
<li>Use Python 3.11 non-beta in CI (#438 by <a href="https://github.com/bbc2">@bbc2</a>)</li>
@@ -1129,7 +1176,7 @@ <h2 id="060">0.6.0</h2>
11291176
</ul>
11301177
<h2 id="051">0.5.1</h2>
11311178
<ul>
1132-
<li>Fix find_dotenv - it now start search from the file where this
1179+
<li>Fix <code>find_dotenv</code> - it now start search from the file where this
11331180
function is called from.</li>
11341181
</ul>
11351182
<h2 id="050">0.5.0</h2>

contributing/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
<link rel="icon" href="../assets/images/favicon.png">
12-
<meta name="generator" content="mkdocs-1.3.1, mkdocs-material-8.2.16">
12+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-8.2.16">
1313

1414

1515

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
<link rel="icon" href="assets/images/favicon.png">
12-
<meta name="generator" content="mkdocs-1.3.1, mkdocs-material-8.2.16">
12+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-8.2.16">
1313

1414

1515

@@ -543,10 +543,10 @@
543543

544544
<h1 id="python-dotenv">python-dotenv</h1>
545545
<p><a href="https://github.com/theskumar/python-dotenv/actions/workflows/test.yml"><img alt="Build Status" src="https://github.com/theskumar/python-dotenv/actions/workflows/test.yml/badge.svg" /></a>
546-
<a href="http://badge.fury.io/py/python-dotenv"><img alt="PyPI version" src="https://badge.fury.io/py/python-dotenv.svg" /></a></p>
547-
<p>Python-dotenv reads key-value pairs from a <code>.env</code> file and can set them as environment
546+
<a href="https://badge.fury.io/py/python-dotenv"><img alt="PyPI version" src="https://badge.fury.io/py/python-dotenv.svg" /></a></p>
547+
<p>python-dotenv reads key-value pairs from a <code>.env</code> file and can set them as environment
548548
variables. It helps in the development of applications following the
549-
<a href="http://12factor.net/">12-factor</a> principles.</p>
549+
<a href="https://12factor.net/">12-factor</a> principles.</p>
550550
<ul>
551551
<li><a href="#getting-started">Getting Started</a></li>
552552
<li><a href="#other-use-cases">Other Use Cases</a><ul>
@@ -570,17 +570,17 @@ <h2 id="getting-started">Getting Started</h2>
570570
<p>If your application takes its configuration from environment variables, like a 12-factor
571571
application, launching it in development is not very practical because you have to set
572572
those environment variables yourself.</p>
573-
<p>To help you with that, you can add Python-dotenv to your application to make it load the
573+
<p>To help you with that, you can add python-dotenv to your application to make it load the
574574
configuration from a <code>.env</code> file when it is present (e.g. in development) while remaining
575575
configurable via the environment:</p>
576576
<pre><code class="language-python">from dotenv import load_dotenv
577577

578-
load_dotenv() # take environment variables from .env.
578+
load_dotenv() # take environment variables
579579

580580
# Code of your application, which uses environment variables (e.g. from `os.environ` or
581581
# `os.getenv`) as if they came from the actual environment.
582582
</code></pre>
583-
<p>By default, <code>load_dotenv</code> doesn't override existing environment variables.</p>
583+
<p>By default, <code>load_dotenv</code> doesn't override existing environment variables and looks for a <code>.env</code> file in same directory as python script or searches for it incrementally higher up.</p>
584584
<p>To configure the development environment, add a <code>.env</code> in the root directory of your
585585
project:</p>
586586
<pre><code>.
@@ -689,7 +689,7 @@ <h3 id="variable-without-a-value">Variable without a value</h3>
689689
<p>This shouldn't be confused with <code>FOO=</code>, in which case the variable is associated with the
690690
empty string.</p>
691691
<h3 id="variable-expansion">Variable expansion</h3>
692-
<p>Python-dotenv can interpolate variables using POSIX variable expansion.</p>
692+
<p>python-dotenv can interpolate variables using POSIX variable expansion.</p>
693693
<p>With <code>load_dotenv(override=True)</code> or <code>dotenv_values()</code>, the value of a variable is the
694694
first of the values defined in the following list:</p>
695695
<ul>

license/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
<link rel="icon" href="../assets/images/favicon.png">
12-
<meta name="generator" content="mkdocs-1.3.1, mkdocs-material-8.2.16">
12+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-8.2.16">
1313

1414

1515

objects.inv

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
# Project: python-dotenv
33
# Version: 0.0.0
44
# The remainder of this file is compressed using zlib.
5-
xڕ�=
6-
�0��StUq�2E�R)�W���E7���| !��؎qu�,� <4<X���Vt�� �O6!\^'V�8�lh�$����3�T����9���Ȳ�MEwB�v�,}6��
5+
xڕ��! E�~�n��ҟ!ʤ�)��$��F�#Ģ̊͹����4��|���I��4�;�ߘ'qx=rR.C|�6�N詙�HF���� I�P������.�y�j�Q!���\�؎jS��S���[�3��:ݪ�3�lm��3Dv�L����{�}�w���

0 commit comments

Comments
 (0)