Skip to content

Commit ed83302

Browse files
gh
1 parent d27a8db commit ed83302

23 files changed

+79
-63
lines changed

.github/workflows/build_conda.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
os: [ubuntu-20.04, windows-2019, macos-11]
15+
os: [ubuntu-20.04, windows-2019, macos-12]
1616
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
exclude:
1818
- os: windows-2019

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1414
## 2.8.1
1515
### Changed
1616
- Log levels in `send_with_stream()` to be less verbose.
17+
- Dropping support for Python 3.7
1718
### Fixed
1819
- `AttributeError: 'NoneType' object has no attribute 'get'` in `get_latest_version()`.
1920

dev/sphinx/source/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1414
## 2.8.1
1515
### Changed
1616
- Log levels in `send_with_stream()` to be less verbose.
17+
- Dropping support for Python 3.7
1718
### Fixed
1819
- `AttributeError: 'NoneType' object has no attribute 'get'` in `get_latest_version()`.
1920

dev/sphinx/source/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Use the [UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-a
271271
### What are the benefits of the UNICORN Binance WebSocket API?
272272
- Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!
273273

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

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

417417
## Installation and Upgrade
418-
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
418+
The module requires Python 3.8 and runs smoothly up to and including Python 3.12.
419419

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

docs/_modules/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ <h3>Navigation</h3>
254254
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
255255
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
256256
See <a href="/license.html">License</a> for more information.<br />
257-
Last updated on Nov 01 2024 at 11:44 (CET).
257+
Last updated on Nov 01 2024 at 12:06 (CET).
258258
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
259259
<br />
260260
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/_modules/unicorn_binance_websocket_api/api.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ <h1>Source code for unicorn_binance_websocket_api.api</h1><div class="highlight"
167167

168168
<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>
169169
<span class="k">try</span><span class="p">:</span>
170+
<span class="c1"># Todo remove!</span>
170171
<span class="c1"># python &lt;=3.7 support</span>
171172
<span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Literal</span>
172173
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
@@ -2241,7 +2242,7 @@ <h3>Navigation</h3>
22412242
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
22422243
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
22432244
See <a href="/license.html">License</a> for more information.<br />
2244-
Last updated on Nov 01 2024 at 11:34 (CET).
2245+
Last updated on Nov 01 2024 at 12:06 (CET).
22452246
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
22462247
<br />
22472248
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/_modules/unicorn_binance_websocket_api/manager.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ <h1>Source code for unicorn_binance_websocket_api.manager</h1><div class="highli
182182
<span class="kn">from</span> <span class="nn">operator</span> <span class="kn">import</span> <span class="n">itemgetter</span>
183183
<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>
184184
<span class="k">try</span><span class="p">:</span>
185+
<span class="c1"># Todo: Remove!</span>
185186
<span class="c1"># python &lt;=3.7 support</span>
186187
<span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Literal</span>
187188
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
@@ -5458,7 +5459,7 @@ <h3>Navigation</h3>
54585459
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
54595460
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
54605461
See <a href="/license.html">License</a> for more information.<br />
5461-
Last updated on Nov 01 2024 at 11:44 (CET).
5462+
Last updated on Nov 01 2024 at 12:06 (CET).
54625463
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
54635464
<br />
54645465
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/_sources/changelog.md.txt

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1414
## 2.8.1
1515
### Changed
1616
- Log levels in `send_with_stream()` to be less verbose.
17+
- Dropping support for Python 3.7
1718
### Fixed
1819
- `AttributeError: 'NoneType' object has no attribute 'get'` in `get_latest_version()`.
1920

docs/_sources/readme.md.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Use the [UNICORN Binance REST API](https://www.lucit.tech/unicorn-binance-rest-a
271271
### What are the benefits of the UNICORN Binance WebSocket API?
272272
- Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!
273273

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

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

417417
## Installation and Upgrade
418-
The module requires Python 3.7 and runs smoothly up to and including Python 3.12.
418+
The module requires Python 3.8 and runs smoothly up to and including Python 3.12.
419419

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

docs/changelog.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,7 @@ <h2>2.8.1<a class="headerlink" href="#id1" title="Link to this heading">¶</a></
892892
<h3>Changed<a class="headerlink" href="#changed" title="Link to this heading"></a></h3>
893893
<ul class="simple">
894894
<li><p>Log levels in <code class="docutils literal notranslate"><span class="pre">send_with_stream()</span></code> to be less verbose.</p></li>
895+
<li><p>Dropping support for Python 3.7</p></li>
895896
</ul>
896897
</section>
897898
<section id="fixed">
@@ -4250,7 +4251,7 @@ <h3>Navigation</h3>
42504251
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
42514252
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
42524253
See <a href="/license.html">License</a> for more information.<br />
4253-
Last updated on Nov 01 2024 at 11:44 (CET).
4254+
Last updated on Nov 01 2024 at 12:06 (CET).
42544255
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
42554256
<br />
42564257
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/code_of_conduct.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ <h3>Navigation</h3>
399399
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
400400
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
401401
See <a href="/license.html">License</a> for more information.<br />
402-
Last updated on Nov 01 2024 at 11:44 (CET).
402+
Last updated on Nov 01 2024 at 12:06 (CET).
403403
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
404404
<br />
405405
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/contributing.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ <h3>Navigation</h3>
338338
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
339339
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
340340
See <a href="/license.html">License</a> for more information.<br />
341-
Last updated on Nov 01 2024 at 11:44 (CET).
341+
Last updated on Nov 01 2024 at 12:06 (CET).
342342
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
343343
<br />
344344
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/genindex.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ <h3>Navigation</h3>
785785
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
786786
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
787787
See <a href="/license.html">License</a> for more information.<br />
788-
Last updated on Nov 01 2024 at 11:44 (CET).
788+
Last updated on Nov 01 2024 at 12:06 (CET).
789789
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
790790
<br />
791791
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ <h3>Navigation</h3>
10991099
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
11001100
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
11011101
See <a href="/license.html">License</a> for more information.<br />
1102-
Last updated on Nov 01 2024 at 11:44 (CET).
1102+
Last updated on Nov 01 2024 at 12:06 (CET).
11031103
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
11041104
<br />
11051105
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/license.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ <h3>Navigation</h3>
389389
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
390390
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
391391
See <a href="/license.html">License</a> for more information.<br />
392-
Last updated on Nov 01 2024 at 11:44 (CET).
392+
Last updated on Nov 01 2024 at 12:06 (CET).
393393
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
394394
<br />
395395
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/modules.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ <h3>Navigation</h3>
497497
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
498498
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
499499
See <a href="/license.html">License</a> for more information.<br />
500-
Last updated on Nov 01 2024 at 11:44 (CET).
500+
Last updated on Nov 01 2024 at 12:06 (CET).
501501
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
502502
<br />
503503
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/py-modindex.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ <h3>Navigation</h3>
302302
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
303303
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
304304
See <a href="/license.html">License</a> for more information.<br />
305-
Last updated on Nov 01 2024 at 11:44 (CET).
305+
Last updated on Nov 01 2024 at 12:06 (CET).
306306
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
307307
<br />
308308
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/readme.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ <h2>Description<a class="headerlink" href="#description" title="Link to this hea
501501
<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>
502502
<ul class="simple">
503503
<li><p>Fully managed websockets and 100% auto-reconnect! Also handles maintenance windows!</p></li>
504-
<li><p>No memory leaks from Python version 3.7 to 3.12!</p></li>
504+
<li><p>No memory leaks from Python version 3.8 to 3.12!</p></li>
505505
<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
506506
maximum performance.</p></li>
507507
<li><p>Support for <a class="reference external" href="https://developers.binance.com/docs/binance-trading-api/websocket_api">Binance Websocket API</a>, send
@@ -699,7 +699,7 @@ <h2>Live Demo<a class="headerlink" href="#live-demo" title="Link to this heading
699699
</section>
700700
<section id="installation-and-upgrade">
701701
<h2>Installation and Upgrade<a class="headerlink" href="#installation-and-upgrade" title="Link to this heading"></a></h2>
702-
<p>The module requires Python 3.7 and runs smoothly up to and including Python 3.12.</p>
702+
<p>The module requires Python 3.8 and runs smoothly up to and including Python 3.12.</p>
703703
<p>Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!</p>
704704
<p>For the PyPy interpreter we offer packages via PyPi only from Python version 3.9 and higher.</p>
705705
<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>
@@ -1097,7 +1097,7 @@ <h3>Navigation</h3>
10971097
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
10981098
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
10991099
See <a href="/license.html">License</a> for more information.<br />
1100-
Last updated on Nov 01 2024 at 11:44 (CET).
1100+
Last updated on Nov 01 2024 at 12:06 (CET).
11011101
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
11021102
<br />
11031103
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/search.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ <h3>Navigation</h3>
225225
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
226226
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
227227
See <a href="/license.html">License</a> for more information.<br />
228-
Last updated on Nov 01 2024 at 11:44 (CET).
228+
Last updated on Nov 01 2024 at 12:06 (CET).
229229
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
230230
<br />
231231
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.4.7.

docs/searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/security.html

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

docs/unicorn_binance_websocket_api.html

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

0 commit comments

Comments
 (0)