50 Commits

Author SHA1 Message Date
dependabot[bot]
ea3f02ab58
build(deps): bump seaborn from 0.12.2 to 0.13.0 (#239)
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [seaborn](https://github.com/mwaskom/seaborn) from 0.12.2 to
0.13.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mwaskom/seaborn/releases">seaborn's
releases</a>.</em></p>
<blockquote>
<h2>v0.13.0 (September 2023)</h2>
<p><strong>See the <a
href="https://seaborn.pydata.org/whatsnew/v0.13.0.html">online docs</a>
for an annotated version of these notes with working links.</strong></p>
<p>This is a major release with a number of important new features and
changes. The highlight is a major overhaul to seaborn's categorical
plotting functions, providing them with many new capabilities and better
aligning their API with the rest of the library. There is also
provisional support for alternate dataframe libraries like <a
href="https://www.pola.rs">polars</a>, a new theme and display
configuration system for <code>objects.Plot</code>, and many smaller
bugfixes and enhancements.</p>
<p>Updating is recommended, but users are encouraged to carefully check
the outputs of existing code that uses the categorical functions, and
they should be aware of some deprecations and intentional changes to the
default appearance of the resulting plots (see notes below with and
tags).</p>
<h2>Major enhancements to categorical plots</h2>
<p>Seaborn's <code>categorical functions &lt;categorical_api&gt;</code>
have been completely rewritten for this release. This provided the
opportunity to address some longstanding quirks as well as to add a
number of smaller but much-desired features and enhancements.</p>
<h3>Support for numeric and datetime data</h3>
<p>The categorical functions have historically treated <em>all</em> data
as categorical, even when it has a numeric or datetime type. This can
now be controlled with the new <!-- raw HTML omitted -->native_scale<!--
raw HTML omitted --> parameter. The default remains <!-- raw HTML
omitted -->False<!-- raw HTML omitted --> to preserve existing behavior.
But with <!-- raw HTML omitted -->native_scale=True<!-- raw HTML omitted
-->, values will be treated as they would by other seaborn or matplotlib
functions. Element widths will be derived from the minimum distance
between two unique values on the categorical axis.</p>
<p>Additionally, while seaborn previously determined the mapping from
categorical values to ordinal positions internally, this is now
delegated to matplotlib. The change should mostly be transparent to the
user, but categorical plots (even with <!-- raw HTML omitted
-->native_scale=False<!-- raw HTML omitted -->) will better align with
artists added by other seaborn or matplotlib functions in most cases,
and matplotlib's interactive machinery will work better.</p>
<h3>Changes to color defaults and specification</h3>
<p>The categorical functions now act more like the rest of seaborn in
that they will produce a plot with a single main color unless the <!--
raw HTML omitted -->hue<!-- raw HTML omitted --> variable is assigned.
Previously, there would be an implicit redundant color mapping (e.g.,
each box in a boxplot would get a separate color from the default
palette). To retain the previous behavior, explicitly assign a redundant
<!-- raw HTML omitted -->hue<!-- raw HTML omitted --> variable (e.g.,
<!-- raw HTML omitted -->boxplot(data, x=&quot;x&quot;, y=&quot;y&quot;,
hue=&quot;x&quot;)<!-- raw HTML omitted -->).</p>
<p>Two related idiosyncratic color specifications are deprecated, but
they will continue to work (with a warning) for one release cycle:</p>
<ul>
<li>Passing a <!-- raw HTML omitted -->palette<!-- raw HTML omitted -->
without explicitly assigning <!-- raw HTML omitted -->hue<!-- raw HTML
omitted --> is no longer supported (add an explicitly redundant <!-- raw
HTML omitted -->hue<!-- raw HTML omitted --> assignment instead).</li>
<li>Passing a <!-- raw HTML omitted -->color<!-- raw HTML omitted -->
while assigning <!-- raw HTML omitted -->hue<!-- raw HTML omitted --> to
produce a gradient is no longer supported (use <!-- raw HTML omitted
-->palette=&quot;dark:{color}&quot;<!-- raw HTML omitted --> or <!-- raw
HTML omitted -->palette=&quot;light:{color}&quot;<!-- raw HTML omitted
--> instead).</li>
</ul>
<p>Finally, like other seaborn functions, the default palette now
depends on the variable type, and a sequential palette will be used with
numeric data. To retain the previous behavior, pass the name of a
qualitative palette (e.g., <!-- raw HTML omitted
-->palette=&quot;deep&quot;<!-- raw HTML omitted --> for seaborn's
default). Accordingly, the functions have gained a parameter to control
numeric color mappings (<!-- raw HTML omitted -->hue_norm<!-- raw HTML
omitted -->).</p>
<h3>Other features, enhancements, and changes</h3>
<p>The following updates apply to multiple categorical functions.</p>
<ul>
<li>All functions now accept a <!-- raw HTML omitted -->legend<!-- raw
HTML omitted --> parameter, which can be a boolean (to suppress the
legend) or one of <!-- raw HTML omitted -->{&quot;auto&quot;,
&quot;brief&quot;, &quot;full&quot;}<!-- raw HTML omitted --> to control
the amount of information shown in the legend for a numerical color
mapping.</li>
<li>All functions now accept a callable <!-- raw HTML omitted
-->formatter<!-- raw HTML omitted --> parameter to control the string
representation of the data.</li>
<li>All functions that draw a solid patch now accept a boolean <!-- raw
HTML omitted -->fill<!-- raw HTML omitted --> parameter, which when set
to <!-- raw HTML omitted -->False<!-- raw HTML omitted --> will draw
line-art elements.</li>
<li>All functions that support dodging now have an additional <!-- raw
HTML omitted -->gap<!-- raw HTML omitted --> parameter that can be set
to a non-zero value to leave space between dodged elements.</li>
<li>The <code>boxplot</code>, <code>boxenplot</code>, and
<code>violinplot</code> functions now support a single <!-- raw HTML
omitted -->linecolor<!-- raw HTML omitted --> parameter.</li>
<li>The default value for <!-- raw HTML omitted -->dodge<!-- raw HTML
omitted --> has changed from <!-- raw HTML omitted -->True<!-- raw HTML
omitted --> to <!-- raw HTML omitted -->&quot;auto&quot;<!-- raw HTML
omitted -->. With <!-- raw HTML omitted -->&quot;auto&quot;<!-- raw HTML
omitted -->, elements will dodge only when at least one set of elements
would otherwise overlap.</li>
<li>When the value axis of the plot has a non-linear scale, the
statistical operations (e.g. an aggregation in <code>pointplot</code> or
the kernel density fit in <code>violinplot</code>) are now applied in
that scale space.</li>
<li>All functions now accept a <!-- raw HTML omitted -->log_scale<!--
raw HTML omitted --> parameter. With a single argument, this will set
the scale on the &quot;value&quot; axis (<em>opposite</em> the
categorical axis). A tuple will set each axis directly (although setting
a log scale categorical axis also requires <!-- raw HTML omitted
-->native_scale=True<!-- raw HTML omitted -->).</li>
<li>The <!-- raw HTML omitted -->orient<!-- raw HTML omitted -->
parameter now accepts <!-- raw HTML omitted
-->&quot;x&quot;/&quot;y&quot;<!-- raw HTML omitted --> to specify the
categorical axis, matching the objects interface.</li>
<li>The categorical functions are generally more deferential to the
user's additional matplotlib keyword arguments.</li>
<li>Using <!-- raw HTML omitted -->&quot;gray&quot;<!-- raw HTML omitted
--> to select an automatic gray value that complements the main palette
is now deprecated in favor of <!-- raw HTML omitted
-->&quot;auto&quot;<!-- raw HTML omitted -->.</li>
</ul>
<p>The following updates are function-specific.</p>
<ul>
<li>In <code>pointplot</code>, a single
<code>matplotlib.lines.Line2D</code> artist is now used rather than
adding separate <code>matplotlib.collections.PathCollection</code>
artist for the points. As a result, it is now possible to pass
additional keyword arguments for complete customization the appearance
of both the lines and markers; additionally, the legend representation
is improved. Accordingly, parameters that previously allowed only
partial customization (<!-- raw HTML omitted -->scale<!-- raw HTML
omitted -->, <!-- raw HTML omitted -->join<!-- raw HTML omitted -->, and
<!-- raw HTML omitted -->errwidth<!-- raw HTML omitted -->) are now
deprecated. The old parameters will now trigger detailed warning
messages with instructions for adapting existing code.</li>
<li>The bandwidth specification in <code>violinplot</code> better aligns
with <code>kdeplot</code>, as the <!-- raw HTML omitted -->bw<!-- raw
HTML omitted --> parameter is now deprecated in favor of <!-- raw HTML
omitted -->bw_method<!-- raw HTML omitted --> and <!-- raw HTML omitted
-->bw_adjust<!-- raw HTML omitted -->.</li>
<li>In <code>boxenplot</code>, the boxen are now drawn with separate
patch artists in each tail. This may have consequences for code that
works with the underlying artists, but it produces a better result for
low-alpha / unfilled plots and enables proper area/density scaling.</li>
<li>In <code>barplot</code>, the <!-- raw HTML omitted -->errcolor<!--
raw HTML omitted --> and <!-- raw HTML omitted -->errwidth<!-- raw HTML
omitted --> parameters are now deprecated in favor of a more general
<!-- raw HTML omitted -->err_kws<!-- raw HTML omitted -->` dictionary.
The existing parameters will continue to work for two releases.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f2abeb0113"><code>f2abeb0</code></a>
Update version metadata to 0.13.0</li>
<li><a
href="d657c54add"><code>d657c54</code></a>
Merge branch 'master' into v0.13</li>
<li><a
href="a8b6cac4c8"><code>a8b6cac</code></a>
Assorted small doc updates (<a
href="https://redirect.github.com/mwaskom/seaborn/issues/3502">#3502</a>)</li>
<li><a
href="4888797c7a"><code>4888797</code></a>
Avoid a matplotlib warning for strip/swarmplot with unfilled marker (<a
href="https://redirect.github.com/mwaskom/seaborn/issues/3501">#3501</a>)</li>
<li><a
href="782b71ee81"><code>782b71e</code></a>
Address a couple of warnings that turned up only in the docs (<a
href="https://redirect.github.com/mwaskom/seaborn/issues/3500">#3500</a>)</li>
<li><a
href="6b9e2fb93b"><code>6b9e2fb</code></a>
Fix catplot with kind='point' to avoid color warning (<a
href="https://redirect.github.com/mwaskom/seaborn/issues/3499">#3499</a>)</li>
<li><a
href="43d762ef50"><code>43d762e</code></a>
Set version string for v0.13.0rc0</li>
<li><a
href="0d46709b4a"><code>0d46709</code></a>
Postpone some removals of deprecated features (<a
href="https://redirect.github.com/mwaskom/seaborn/issues/3497">#3497</a>)</li>
<li><a
href="b2f0de03b1"><code>b2f0de0</code></a>
Update release notes</li>
<li><a
href="92c22bc699"><code>92c22bc</code></a>
Restore implicit hue for wide categorical data (<a
href="https://redirect.github.com/mwaskom/seaborn/issues/3496">#3496</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/mwaskom/seaborn/compare/v0.12.2...v0.13.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=seaborn&package-manager=pip&previous-version=0.12.2&new-version=0.13.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 19:23:13 +02:00
dependabot[bot]
41f590b2e8
build(deps-dev): bump sphinxcontrib-drawio from 0.0.16 to 0.0.17 (#236)
Bumps
[sphinxcontrib-drawio](https://github.com/Modelmat/sphinxcontrib-drawio)
from 0.0.16 to 0.0.17.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Modelmat/sphinxcontrib-drawio/releases">sphinxcontrib-drawio's
releases</a>.</em></p>
<blockquote>
<h2>0.0.17</h2>
<h2>What's Changed</h2>
<ul>
<li>Update CI with new python and draw.io versions by <a
href="https://github.com/modelmat"><code>@​modelmat</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/76">modelmat/sphinxcontrib-drawio#76</a></li>
<li>Revert &quot;Run off of latest draw.io version&quot; by <a
href="https://github.com/modelmat"><code>@​modelmat</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/79">modelmat/sphinxcontrib-drawio#79</a></li>
<li>Remove deprecated <code>.. drawio</code> directive by <a
href="https://github.com/modelmat"><code>@​modelmat</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/78">modelmat/sphinxcontrib-drawio#78</a></li>
<li>option: add page-name option to select by name by <a
href="https://github.com/schspa"><code>@​schspa</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/75">modelmat/sphinxcontrib-drawio#75</a></li>
<li>Rework conversion handling to prevent subtle errors by <a
href="https://github.com/modelmat"><code>@​modelmat</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/80">modelmat/sphinxcontrib-drawio#80</a></li>
<li>Produce a warning if the supplied :page-index: is outside the valid
range by <a
href="https://github.com/modelmat"><code>@​modelmat</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/82">modelmat/sphinxcontrib-drawio#82</a></li>
<li>Add drawio_disable_gpu config option by <a
href="https://github.com/jdillard"><code>@​jdillard</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/85">modelmat/sphinxcontrib-drawio#85</a></li>
<li>Add drawio_disable_dev_shm_usage config option by <a
href="https://github.com/jdillard"><code>@​jdillard</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/86">modelmat/sphinxcontrib-drawio#86</a></li>
<li>Fix black formatting errors by <a
href="https://github.com/jdillard"><code>@​jdillard</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/87">modelmat/sphinxcontrib-drawio#87</a></li>
<li>Bump wheel from 0.33.6 to 0.38.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/83">modelmat/sphinxcontrib-drawio#83</a></li>
<li>Fix deprecated sphinx.testing.path by <a
href="https://github.com/jdillard"><code>@​jdillard</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/90">modelmat/sphinxcontrib-drawio#90</a></li>
<li>Fix absolute path by <a
href="https://github.com/jdillard"><code>@​jdillard</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/91">modelmat/sphinxcontrib-drawio#91</a></li>
<li>Restore support for multiple versions of Sphinx by <a
href="https://github.com/jdillard"><code>@​jdillard</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/92">modelmat/sphinxcontrib-drawio#92</a></li>
<li>More multi-version Sphinx path support by <a
href="https://github.com/jdillard"><code>@​jdillard</code></a> in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/93">modelmat/sphinxcontrib-drawio#93</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/schspa"><code>@​schspa</code></a> made
their first contribution in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/75">modelmat/sphinxcontrib-drawio#75</a></li>
<li><a
href="https://github.com/dependabot"><code>@​dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/83">modelmat/sphinxcontrib-drawio#83</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/modelmat/sphinxcontrib-drawio/compare/0.0.16...0.0.17">https://github.com/modelmat/sphinxcontrib-drawio/compare/0.0.16...0.0.17</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="373b54f179"><code>373b54f</code></a>
Bump version to 0.0.17</li>
<li><a
href="c70e088d03"><code>c70e088</code></a>
Merge pull request <a
href="https://redirect.github.com/Modelmat/sphinxcontrib-drawio/issues/93">#93</a>
from jdillard/fix-path-4</li>
<li><a
href="83f962c3a6"><code>83f962c</code></a>
More multi-version Sphinx path support</li>
<li><a
href="4f44c2cff2"><code>4f44c2c</code></a>
Merge pull request <a
href="https://redirect.github.com/Modelmat/sphinxcontrib-drawio/issues/92">#92</a>
from jdillard/fix-path-3</li>
<li><a
href="74c0cbbdd0"><code>74c0cbb</code></a>
Fix that supports multiple versions of Sphinx</li>
<li><a
href="2cb12b0aa4"><code>2cb12b0</code></a>
Merge pull request <a
href="https://redirect.github.com/Modelmat/sphinxcontrib-drawio/issues/91">#91</a>
from jdillard/fix-path-2</li>
<li><a
href="1737966bd9"><code>1737966</code></a>
Fix absolute path</li>
<li><a
href="abaf1ec69b"><code>abaf1ec</code></a>
Merge pull request <a
href="https://redirect.github.com/Modelmat/sphinxcontrib-drawio/issues/90">#90</a>
from jdillard/fix-path</li>
<li><a
href="66ef53910d"><code>66ef539</code></a>
Fix deprecated sphinx.testing.path</li>
<li><a
href="20a8029f99"><code>20a8029</code></a>
Merge pull request <a
href="https://redirect.github.com/Modelmat/sphinxcontrib-drawio/issues/83">#83</a>
from modelmat/dependabot/pip/wheel-0.38.1</li>
<li>Additional commits viewable in <a
href="https://github.com/Modelmat/sphinxcontrib-drawio/compare/0.0.16...0.0.17">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=sphinxcontrib-drawio&package-manager=pip&previous-version=0.0.16&new-version=0.0.17)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 19:14:27 +02:00
dependabot[bot]
9fcb265bc2
build(deps-dev): bump mypy from 1.6.0 to 1.6.1 (#238)
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [mypy](https://github.com/python/mypy) from 1.6.0 to 1.6.1.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9b891fe5a1"><code>9b891fe</code></a>
Remove +dev from version</li>
<li><a
href="6b6504eb8a"><code>6b6504e</code></a>
Fix crash on ParamSpec unification (for real) (<a
href="https://redirect.github.com/python/mypy/issues/16259">#16259</a>)</li>
<li><a
href="eb81e63e9d"><code>eb81e63</code></a>
Fix crash on ParamSpec unification (<a
href="https://redirect.github.com/python/mypy/issues/16251">#16251</a>)</li>
<li><a
href="45f7a12e55"><code>45f7a12</code></a>
Add +dev to version</li>
<li>See full diff in <a
href="https://github.com/python/mypy/compare/v1.6.0...v1.6.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mypy&package-manager=pip&previous-version=1.6.0&new-version=1.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 18:57:08 +02:00
fdba24ef11
Updates including security-updates (#226) 2023-10-19 17:59:15 +02:00
Sebastian
c680ac9759
Feature/ner (#103)
NER und Sentiment-Pipeline mit Services zur Datenextraktion.

---------

Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
Co-authored-by: TrisNol <tristan.nolde@yahoo.de>
2023-10-16 19:54:24 +02:00
c0d42a22d7
General updates & linting (#218) 2023-10-14 17:43:45 +02:00
ea9c777217
Enabeling data processing in docker container. (#195) 2023-10-06 18:36:29 +02:00
ea89a64a80
Linter update to ruff==0.0.292 (#191) 2023-10-04 20:04:59 +02:00
d2d4a436f8
Add a cli interface to choose a configuration (#163)
- [x] add a cli to the webserver to take env variables into account 
- [x] add a cli to the data processing that takes enviromental variable
as a valid source into account
- [x] rework the cli for the reset sql command
- [x] rework the cli for the copying of sql data from one db to another
2023-10-02 20:31:42 +02:00
2abe12f027
Add a function to convert DM to EUR (#168)
The function is ment to transform the captial dict into a format that
can be added as a kwarg (**norm_capital(capital_dict) to the company
entities.
This PR only contains the function itself.
2023-10-02 19:46:17 +02:00
05472cc16a
Added longitude/latitude and positional accuracy to the company data (#180) 2023-10-02 17:18:04 +02:00
4d99601fc6
Optional docs Feature: Changelog (#155)
Added the ability to generate a changelog of the main branch in the
Documenation.
2023-09-28 19:05:05 +02:00
552e1bdf96
Added some metadata to the package (#144)
Filled out the mainter section.
Added a new description.
Added the path to the repo to the package.
Added the path to the documentation.

Co-authored-by: KM-R <129882581+KM-R@users.noreply.github.com>
Co-authored-by: Tristan Nolde <tristan.nolde@yahoo.de>
2023-09-28 17:17:01 +02:00
KM-R
9566276047
Create multi page layout (#147)
Created two pages (home and company), page reloads after company
selection in dropdown or clicking the home button.
2023-09-26 18:38:40 +02:00
54dd574fb8
Added the ability to include drawio diagrams into the sphinx docs. (#107) 2023-09-25 20:37:59 +02:00
091e67de79
build first set of docker container in pipline and place them in the the github registry (#142)
- added a Dockerfile for the thre containers
- added a workflow step to build and placing the container in the
registry
- added a docker-compose.yaml to use the build images
- added a docker compose to build the images locally and a script for
prebuild steps
2023-09-24 16:32:52 +00:00
Tristan Nolde
5c8d20f4c2
Feature/additional stammdaten (#132)
Feature/additional stammdaten
2023-09-24 15:31:17 +02:00
820fb3e52b
Repaired the SQL copy and reduced the log volume a bit (#141)
- Added a cli interface to the SQL copy
- Repaired the SQL copy function
- Added the SQL copy function to the scripts
- Reduced the logging verbosity
2023-09-24 15:11:49 +02:00
TrisNol
81b8752abf Merge branch 'main' into feature/additional-stammdaten 2023-09-24 13:49:02 +02:00
d9ca808efa
Mypy does not validate if type: ignore comments are needed. (#137) 2023-09-23 12:44:27 +02:00
c5a383e903
Pipline / dependency updates (#145) 2023-09-23 10:49:14 +02:00
TrisNol
77f08cd901 Merge branch 'main' into feature/additional-stammdaten 2023-09-23 10:32:09 +02:00
KM-R
487b2f42d1
update data based on selected company (#122)
Added UI elements to select a company and update shown data depending on chosen company



---------

Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
2023-09-19 23:45:10 +02:00
TrisNol
febcd59e39 test(data-extraction): Include first unit tests 2023-09-17 19:20:28 +02:00
80f077ee7a
Version ups (#117)
Rutine version ups for
- python-depdencies
- pre-commits
- piplines
2023-09-17 13:50:53 +02:00
507647d164
Added custom 404 error code page in the sphinx docs (#115) 2023-09-13 19:01:09 +02:00
TrisNol
cf92cb61cc checkpoint(data-ingestion): Extract founding_date and other stats 2023-09-12 19:07:23 +02:00
d64f53eca9
Script for the transfer of data from Mongo to SQL (#80) 2023-09-11 20:21:35 +02:00
cee1ef901a
Updatest vor everything (#106)
- direct dependencies
- other depdenencies
- pre-commit
2023-09-09 16:47:48 +00:00
TrisNol
2c8805e12f checkpoint: Implement PR feedback 2023-09-09 18:22:20 +02:00
TrisNol
0f6ea8a1ec feat(config): Read secrets from .env file and environemnt variables 2023-09-09 17:59:30 +02:00
TrisNol
0a374a10f6 test(data-ingestion): Increase coverage on Bundesanzeiger wrapper 2023-09-06 18:11:47 +02:00
TrisNol
00a5e9ec25 Merge branch 'main' into feat/fetch-financials 2023-09-06 17:16:48 +02:00
KM-R
80faf57c77
54 get data from multiple tables postgres (#72)
Create first dash board including header, basic company information and
finance plot

---------

Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
2023-09-03 16:18:19 +02:00
TrisNol
ac07bd8e8e improve financial fetch, bind financial KPIs to enum 2023-08-29 17:10:42 +02:00
TrisNol
f64e0dd96e fix: Install deutschland via HTTPS link 2023-08-18 14:27:32 +02:00
TrisNol
309755383e Install deutschland package 2023-08-18 14:15:05 +02:00
e4a57c9136
Chore/rework workflow (#52)
* Reworked the lint action
* Removed the file change requirement
* Repaired mypy
* Repaired pip-audit
2023-08-17 22:05:12 +02:00
faca0a0af6
Repaired a mypy option 2023-08-16 22:10:52 +02:00
9c237402be
Excluded ipynb files from json pretty formatter + poetry update (#50)
* Excluded ipynb files from json pretty formatter +  poetry update
* Reworked pip audit
* Relocated dependencies
* Reworked the tests a bit.
* Poetry update
* Excluded lint and test workflows against the target branch
2023-08-16 20:25:15 +02:00
KM-R
1e7e55e649
Visualization first running dashboard (#51)
* added session maker

* Update prebuild psycopg-build2

* added table dash

* Update company_stats_dash

* Repaired a test.

* update connector_test

---------

Co-authored-by: Tim <tim.ronneburg@outlook.de>
Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
2023-08-15 21:30:58 +02:00
Tim
ea7c955533 fixed sqlAlchemy and db connection
Co-authored-by: Tristan Nolde <TrisNol@users.noreply.github.com>
2023-08-14 20:59:30 +02:00
67c94cfb7e
Changes sql-alchemy to version 1.4.49 2023-08-13 15:00:29 +02:00
TrisNol
d565770b99 checkpoint(db): Refactor mongo utils, extract postgres entities from Juptyer 2023-08-11 15:12:18 +02:00
TrisNol
1e44197199 add types-tqdm 2023-07-20 16:46:53 +02:00
TrisNol
b788ee3659 test: Adding unit tests 2023-07-16 11:25:21 +02:00
1c621f46a7
Added selenium to poetry 2023-07-11 01:59:11 +02:00
TrisNol
4c95550dbf feat(data-extraction): MongoWrapper, DataClasses and services for News and Company data 2023-07-10 18:58:31 +02:00
a9304201af
(chore): Initilised devops tools (#29)
* Added a first action

* Repaired a typo

* Repaired a typo2

* Repaired a typo2

* Added flake8 action

* Repaired a typo in the flake8 action.

* Added a first bandit action

* Added a first batch

* Added a first batch

* Added a first batch

* Added a first batch

* Added a first batch

* Added the flake8-prebuild as a need to flake8

* Added the flake8-prebuild as a need to flake8

* Added the flake8-prebuild as a need to flake8

* Added the docker socket to the volume.

* Added the flake8-prebuild as a need to flake8

* Removed latest part from container.

* Removed latest part from container.

* Removed latest part from container.

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8

* Reworked flake8 poetry

* Reworked flake8 poetry

* Changed to 64bit

* Some edits to the runner

* Added python setup

* Added python -m to python docker image.

* Added python -m to python docker image.

* Added python -m to python docker image.

* Added python -m to python docker image.

* Added python -m to python docker image.

* Added python -m to python docker image.

* Added ra run linter

* Added ra run linter

* Added ra run linter

* Added ra run linter

* Removed redundant version

* Removed redundant version

* Added isort

* Added isort

* Added isort

* Added poetry install

* Added poetry install

* Added flake8 as lint.

* Added flake8 as lint.

* Added flake8 as lint.

* Added flake8 as lint.

* Added flake8 as lint.

* Added flake8 as lint.

* Added flake8 as lint.

* Uses nodejs and python image

* Added flake8 as lint.

* Added flake8 as lint.

* Added flake8 as lint.

* Added flake8 as lint.

* Removed selfhosted runner

* Removed self hosted runner

* Removed self hosted runner

* Removed self hosted runner

* Added black and flake8 tests

* Removed self hosted runner

* Removed self hosted runner

* Removed unneded actions

* Added a mypy error.

* Removed poetry call before boetry setup

* Removed poetry call before poetry setup

* Added a test to understand the poetry action better

* Added a test to understand the poetry action better

* Added a test to understand the poetry action better

* Added a test to understand the poetry action better

* Added a test to understand the poetry action better

* Added a test to understand the poetry action better

* Added the snook poetry builder

* Reworked the repo a bit

* Removed unneeded poetry installation

* Added the isort action

* Added isort test

* Added ruff

* Added full ruff configuration

* Added full ruff configuration2

* Added full ruff configuration2

* Removed duplicat configurations

* Removed some redundant pre-commit hooks

* Removed unneeded actions.

* Removed unneeded actions.

* Repaired ruff

* Added tests.

* Removed

* Removed

* Removed a missing file

* Removed a missing file

* Removed a missing file

* Removed a missing file

* Removed a missing file

* Added reports as artifacts

* Added reports as artifacts

* Added reports as artifacts

* Removed the unneded poetry test

* Added a license checker.

* Added a license checker.

* Removed some unneeded configuration.

* Removed the import reformatted.

* Added doc generation.

* Added doc generation.

* Added license summary.

* Add

* Add lint

* Switched pip-licenses to poetry.

* Switched pip-licenses to poetry.

* Switched pip-licenses to poetry.

* Remove some more packages.

* Remove some more packages.

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added a make file

* Added version codes to the main package

* Changed the format of the md files

* Presentation first draft

* Version up and added extensions

* Version up and added extensions

* Version up and added extensions

* Removed the venv path from docbuild

* Actions version up

* Actions version up

* Actions version up

* Actions version up

* Actions version up

* Actions version up

* Experiements with sphinx

* Experiments with sphinx

* Experiments with sphinx

* Experiments with sphinx

* Experiments with sphinx

* Experiments with sphinx

* Experiments with sphinx

* Experiments with sphinx

* First draft of the sphinx documentation.

* Added the protocol to the time series.

* Added the protocol to the time series.

* First draft ot a first build pipline

* Added mermaid version support

* Added documentations pull and branch request requirements.

* Added documentations pull and branch request requirements.

* Added documentations pull and branch request requirements.

* Added documentations pull and branch request requirements.

* Tests should now be passing

* Tests should now be passing

* Tests should now be passing

* Tests should now be passing

* Tests should now be passing

* Tests should now be passing

* Tests should now be passing

* Tests should now be passing

* Add safety

* Add safety

* Add safety

* Added the action on pull_request_target

* Added the action on pull_request_target

* Added the action on pull_request_target

* Added a pytest coverage report

* Added a pytest coverage report

* Added a pytest coverage report

* Added a pytest coverage report

* Added a pytest coverage report

* Added a build step

* Added a build step

* Added a build step

* Added a build step

* Changed the lint action to work only on python changes.

* Changed the lint action to work only on python changes.

* Changed the lint action to work only on python changes.

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Added the ability to compile a html report

* Coverage

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Finished test and build workflow

* Repaired a bug.

* Repaired a bug.

* Repaired a bug.

* Repaired a bug.

* Repaired a bug.

* Added a github branch.ref

* Removed a poetry install

* Docbuild now excludes templates

* Added the seminarpräsentation to the documentation build

* Added the seminarpräsentation to the documentation build

* Added the seminarpräsentation to the documentation build

* dded a few images

* Changed the pre-commit image

* Changed the pre-commit image

* Presentation done

* Never executing jupyter for sphinx

* Never executing jupyter for sphinx

* Never executing jupyter for sphinx

* Never executing jupyter for sphinx

* Never executing jupyter for sphinx
2023-06-23 18:47:04 +02:00
5a52f61c1c
Added a first trail with FinBert. 2023-04-30 23:23:02 +02:00