forked from BTrDB/btrdb-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update staging branch with latest
master
changes (#52)
- Loading branch information
1 parent
3235404
commit 78046dc
Showing
26 changed files
with
408 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the OS, Python version and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.10" | ||
# You can also specify other tool versions: | ||
# nodejs: "19" | ||
# rust: "1.64" | ||
# golang: "1.19" | ||
|
||
# Build documentation in the "docs/" directory with Sphinx | ||
sphinx: | ||
configuration: docs/source/conf.py | ||
|
||
# Optionally build your docs in additional formats such as PDF and ePub | ||
formats: | ||
# - epub | ||
|
||
# Optional but recommended, declare the Python requirements required | ||
# to build your documentation | ||
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
- method: pip | ||
path: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Changelog | ||
## 5.30.2 | ||
### What's Changed | ||
* Update readthedocs to new yaml for testing. by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/40 | ||
* Converting pandas index takes very long, add in arrow_table. by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/41 | ||
|
||
|
||
**Full Changelog**: https://github.com/PingThingsIO/btrdb-python/compare/v5.30.1...v5.30.2 | ||
|
||
## 5.30.1 | ||
### What's Changed | ||
* Small version bump for pypi release | ||
|
||
|
||
**Full Changelog**: https://github.com/PingThingsIO/btrdb-python/compare/v5.30.0...v5.30.1 | ||
|
||
|
||
## 5.30.0 | ||
### What's Changed | ||
* Merge Arrow support into Main for Release by @youngale-pingthings in https://github.com/PingThingsIO/btrdb-python/pull/37 | ||
* This PR contains many changes that support the commercial Arrow data fetches and inserts | ||
* `arrow_` prefixed methods for `Stream` Objects: | ||
* `insert, aligned_windows, windows, values` | ||
* `arrow_` prefixed methods for StreamSet` objects: | ||
* `insert, values, to_dataframe, to_polars, to_arrow_table, to_numpy, to_dict, to_series` | ||
* Justin gilmer patch 1 by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/39 | ||
|
||
|
||
**Full Changelog**: https://github.com/PingThingsIO/btrdb-python/compare/v5.28.1...v5.30.0 | ||
|
||
|
||
## 5.28.1 | ||
### What's Changed | ||
* Upgrade ray versions by @jleifnf in https://github.com/PingThingsIO/btrdb-python/pull/15 | ||
* Release v5.28.1 and Update Python by @youngale-pingthings in https://github.com/PingThingsIO/btrdb-python/pull/17 | ||
|
||
### New Contributors | ||
* @jleifnf made their first contribution in https://github.com/PingThingsIO/btrdb-python/pull/15 | ||
|
||
**Full Changelog**: https://github.com/PingThingsIO/btrdb-python/compare/v5.15.1...v5.28.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
alabaster>=0.7.12 | ||
Sphinx>=1.7 | ||
sphinx-rtd-theme | ||
numpydoc | ||
pydata-sphinx-theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
.. _API REF: | ||
|
||
API Reference | ||
------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
api/package | ||
api/conn | ||
api/streams | ||
api/points | ||
api/exceptions | ||
api/transformers | ||
api/utils-timez |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
btrdb.conn | ||
============= | ||
|
||
.. _Conn info: | ||
.. automodule:: btrdb.conn | ||
|
||
.. autoclass:: BTrDB | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
btrdb.stream | ||
============== | ||
|
||
.. _StreamGeneralDocs: | ||
.. automodule:: btrdb.stream | ||
|
||
.. autoclass:: Stream | ||
:members: | ||
|
||
.. _StreamSet API: | ||
.. autoclass:: StreamSetBase | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.. _TransformersDocs: | ||
btrdb.transformers | ||
========================= | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
.. _changelog: | ||
Changelog | ||
========= | ||
|
||
5.30.2 | ||
------ | ||
What’s Changed | ||
^^^^^^^^^^^^^^ | ||
- Update readthedocs to new yaml for testing. by @justinGilmer in | ||
https://github.com/PingThingsIO/btrdb-python/pull/40 | ||
- Converting pandas index takes very long, fix this in arrow_table. by | ||
@justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/41 | ||
|
||
**Full Changelog**: | ||
`5.30.2 <https://github.com/PingThingsIO/btrdb-python/compare/v5.30.1…v5.30.2>`_ | ||
|
||
.. _section-1: | ||
|
||
5.30.1 | ||
------ | ||
.. _whats-changed-1: | ||
|
||
What’s Changed | ||
^^^^^^^^^^^^^^ | ||
|
||
- Small version bump for pypi release | ||
|
||
**Full Changelog**: | ||
`5.30.1 <https://github.com/PingThingsIO/btrdb-python/compare/v5.30.0…v5.30.1>`_ | ||
|
||
.. _section-2: | ||
|
||
5.30.0 | ||
------ | ||
.. _whats-changed-2: | ||
|
||
What’s Changed | ||
^^^^^^^^^^^^^^ | ||
|
||
- Merge Arrow support into Main for Release by @youngale-pingthings in | ||
https://github.com/PingThingsIO/btrdb-python/pull/37 | ||
|
||
- This PR contains many changes that support the commercial Arrow | ||
data fetches and inserts | ||
- ``arrow_`` prefixed methods for ``Stream`` Objects: | ||
|
||
- ``insert, aligned_windows, windows, values`` | ||
|
||
- ``arrow_`` prefixed methods for StreamSet\` objects: | ||
|
||
- ``insert, values, to_dataframe, to_polars, to_arrow_table, to_numpy, to_dict, to_series`` | ||
|
||
- Justin gilmer patch 1 by @justinGilmer in | ||
https://github.com/PingThingsIO/btrdb-python/pull/39 | ||
|
||
**Full Changelog**: | ||
`5.30.0 <https://github.com/PingThingsIO/btrdb-python/compare/v5.28.1…v5.30.0>`_ | ||
|
||
.. _section-3: | ||
|
||
5.28.1 | ||
------ | ||
.. _whats-changed-3: | ||
|
||
What’s Changed | ||
^^^^^^^^^^^^^^ | ||
|
||
- Upgrade ray versions by @jleifnf in | ||
https://github.com/PingThingsIO/btrdb-python/pull/15 | ||
- Release v5.28.1 and Update Python by @youngale-pingthings in | ||
https://github.com/PingThingsIO/btrdb-python/pull/17 | ||
|
||
New Contributors | ||
^^^^^^^^^^^^^^^^ | ||
|
||
- @jleifnf made their first contribution in | ||
https://github.com/PingThingsIO/btrdb-python/pull/15 | ||
|
||
**Full Changelog**: | ||
`5.28.1 <https://github.com/PingThingsIO/btrdb-python/compare/v5.15.1…v5.28.1>`_ |
Oops, something went wrong.