Skip to content

Commit

Permalink
gh
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed Nov 1, 2024
1 parent d27a8db commit ed83302
Show file tree
Hide file tree
Showing 23 changed files with 79 additions and 63 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
os: [ubuntu-20.04, windows-2019, macos-12]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
exclude:
- os: windows-2019
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## 2.8.1
### Changed
- Log levels in `send_with_stream()` to be less verbose.
- Dropping support for Python 3.7
### Fixed
- `AttributeError: 'NoneType' object has no attribute 'get'` in `get_latest_version()`.

Expand Down
1 change: 1 addition & 0 deletions dev/sphinx/source/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## 2.8.1
### Changed
- Log levels in `send_with_stream()` to be less verbose.
- Dropping support for Python 3.7
### Fixed
- `AttributeError: 'NoneType' object has no attribute 'get'` in `get_latest_version()`.

Expand Down
4 changes: 2 additions & 2 deletions dev/sphinx/source/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ Use the [UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-a
### What are the benefits of the UNICORN Binance WebSocket API?
- Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!

- No memory leaks from Python version 3.7 to 3.12!
- No memory leaks from Python version 3.8 to 3.12!

- The full [UBS stack](https://www.lucit.tech/unicorn-binance-suite.html) is delivered as a compiled C extension for
maximum performance.
Expand Down Expand Up @@ -415,7 +415,7 @@ machine of [HETZNER CLOUD](https://hetzner.cloud/?ref=rKgYRMq0l8fd)
(Refresh update once a minute!)

## Installation and Upgrade
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
The module requires Python 3.8 and runs smoothly up to and including Python 3.12.

Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!

Expand Down
2 changes: 1 addition & 1 deletion docs/_modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/unicorn_binance_websocket_api/api.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ <h1>Source code for unicorn_binance_websocket_api.api</h1><div class="highlight"

<span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Optional</span><span class="p">,</span> <span class="n">Union</span>
<span class="k">try</span><span class="p">:</span>
<span class="c1"># Todo remove!</span>
<span class="c1"># python &lt;=3.7 support</span>
<span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Literal</span>
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
Expand Down Expand Up @@ -2241,7 +2242,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:34 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/unicorn_binance_websocket_api/manager.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ <h1>Source code for unicorn_binance_websocket_api.manager</h1><div class="highli
<span class="kn">from</span> <span class="nn">operator</span> <span class="kn">import</span> <span class="n">itemgetter</span>
<span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Optional</span><span class="p">,</span> <span class="n">Union</span><span class="p">,</span> <span class="n">Callable</span><span class="p">,</span> <span class="n">List</span><span class="p">,</span> <span class="n">Set</span>
<span class="k">try</span><span class="p">:</span>
<span class="c1"># Todo: Remove!</span>
<span class="c1"># python &lt;=3.7 support</span>
<span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Literal</span>
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
Expand Down Expand Up @@ -5458,7 +5459,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
1 change: 1 addition & 0 deletions docs/_sources/changelog.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## 2.8.1
### Changed
- Log levels in `send_with_stream()` to be less verbose.
- Dropping support for Python 3.7
### Fixed
- `AttributeError: 'NoneType' object has no attribute 'get'` in `get_latest_version()`.

Expand Down
4 changes: 2 additions & 2 deletions docs/_sources/readme.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ Use the [UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-a
### What are the benefits of the UNICORN Binance WebSocket API?
- Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!

- No memory leaks from Python version 3.7 to 3.12!
- No memory leaks from Python version 3.8 to 3.12!

- The full [UBS stack](https://www.lucit.tech/unicorn-binance-suite.html) is delivered as a compiled C extension for
maximum performance.
Expand Down Expand Up @@ -415,7 +415,7 @@ machine of [HETZNER CLOUD](https://hetzner.cloud/?ref=rKgYRMq0l8fd)
(Refresh update once a minute!)

## Installation and Upgrade
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
The module requires Python 3.8 and runs smoothly up to and including Python 3.12.

Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!

Expand Down
3 changes: 2 additions & 1 deletion docs/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,7 @@ <h2>2.8.1<a class="headerlink" href="#id1" title="Link to this heading">¶</a></
<h3>Changed<a class="headerlink" href="#changed" title="Link to this heading"></a></h3>
<ul class="simple">
<li><p>Log levels in <code class="docutils literal notranslate"><span class="pre">send_with_stream()</span></code> to be less verbose.</p></li>
<li><p>Dropping support for Python 3.7</p></li>
</ul>
</section>
<section id="fixed">
Expand Down Expand Up @@ -4250,7 +4251,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/code_of_conduct.html
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/license.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/py-modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
6 changes: 3 additions & 3 deletions docs/readme.html
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ <h2>Description<a class="headerlink" href="#description" title="Link to this hea
<h3>What are the benefits of the UNICORN Binance WebSocket API?<a class="headerlink" href="#what-are-the-benefits-of-the-unicorn-binance-websocket-api" title="Link to this heading"></a></h3>
<ul class="simple">
<li><p>Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!</p></li>
<li><p>No memory leaks from Python version 3.7 to 3.12!</p></li>
<li><p>No memory leaks from Python version 3.8 to 3.12!</p></li>
<li><p>The full <a class="reference external" href="https://www.lucit.tech/unicorn-binance-suite.html">UBS stack</a> is delivered as a compiled C extension for
maximum performance.</p></li>
<li><p>Support for <a class="reference external" href="https://developers.binance.com/docs/binance-trading-api/websocket_api">Binance Websocket API</a>, send
Expand Down Expand Up @@ -699,7 +699,7 @@ <h2>Live Demo<a class="headerlink" href="#live-demo" title="Link to this heading
</section>
<section id="installation-and-upgrade">
<h2>Installation and Upgrade<a class="headerlink" href="#installation-and-upgrade" title="Link to this heading"></a></h2>
<p>The module requires Python 3.7 and runs smoothly up to and including Python 3.12.</p>
<p>The module requires Python 3.8 and runs smoothly up to and including Python 3.12.</p>
<p>Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!</p>
<p>For the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.</p>
<p>The current dependencies are listed <a class="reference external" href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/requirements.txt">here</a>.</p>
Expand Down Expand Up @@ -1097,7 +1097,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/security.html
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
2 changes: 1 addition & 1 deletion docs/unicorn_binance_websocket_api.html
Original file line number Diff line number Diff line change
Expand Up @@ -4144,7 +4144,7 @@ <h3>Navigation</h3>
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
See <a href="/license.html">License</a> for more information.<br />
Last updated on Nov 01 2024 at 11:44 (CET).
Last updated on Nov 01 2024 at 12:06 (CET).
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
<br />
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.
Expand Down
Loading

0 comments on commit ed83302

Please sign in to comment.