Skip to content

Commit

Permalink
Format rst and yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiggi committed Apr 6, 2024
1 parent 90aa416 commit 9dd0952
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 65 deletions.
11 changes: 6 additions & 5 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
---
______________________________________________________________________

name: ➕ Feature request
about: Suggest an idea for this project
title: ''
description: What is your feature request ?
title: "[FEATURE] <title>"
labels: [enhancement, triage]
title: "\[FEATURE\] <title>"
labels: \[enhancement, triage\]
assignees: ghiggi

---
______________________________________________________________________

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
A clear and concise description of what the problem is. Ex. I'm always frustrated when \[...\]

**Describe the solution you'd like**
A clear and concise description of what you want to happen. Please explain why and how it helps your users.
Expand Down
10 changes: 3 additions & 7 deletions .github/ISSUE_TEMPLATE/performance.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
---
name: 🐢 Performance
about: "Runtime, memory, speed, or storage inefficiency"
title: ""
labels: "topic: performance"
assignees: ghiggi
---
______________________________________________________________________

## name: 🐢 Performance about: "Runtime, memory, speed, or storage inefficiency" title: "" labels: "topic: performance" assignees: ghiggi

## Prework

Expand Down
2 changes: 0 additions & 2 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@

The following people have made contributions to this project:


- [Gionata Ghiggi (ghiggi)](https://github.com/ghiggi) - EPFL
- [Marti Bosch (martibosch)](https://github.com/martibosch) - EPFL

1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Changelog


## Version 0.0.1 - TStore Birth Date - 2023-01-11

First release of TStore.
24 changes: 10 additions & 14 deletions ci/environment.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
name: ts-store
channels:
- conda-forge
- conda-forge
dependencies:
- pandas
- pyarrow
- polars
- dask
- distributed
- dask
- distributed
# testing
- pytest
- pytest-cov
- pytest-mock
- pytest-sugar

- dask
- distributed
- pandas
- polars
- pyarrow
- pytest
- pytest-cov
- pytest-mock
- pytest-sugar
23 changes: 10 additions & 13 deletions ci/environment_latest.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
name: ts-store-latest
channels:
- conda-forge
- conda-forge
dependencies:
- pandas
- pyarrow
- polars
- dask
- distributed
- dask
- distributed
# testing
- pytest
- pytest-cov
- pytest-mock
- pytest-sugar
- dask
- distributed
- pandas
- polars
- pyarrow
- pytest
- pytest-cov
- pytest-mock
- pytest-sugar
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ styled with [Book Theme](https://sphinx-book-theme.readthedocs.io/en/stable/inde

All documentation source files are neatly organized in the `docs/` directory within the project's repository.

-----------------------------------------------------------------
______________________________________________________________________

### Build the documentation

Expand Down Expand Up @@ -45,5 +45,5 @@ It first cleans previous builds (`make clean`) and then generates fresh document

**Note**: It's important to review the output of the command. Look out for warnings or errors and address them to ensure the documentation is accurate and complete.

By following these steps, you should have a local version of the TStore documentation in the ``docs/build/html/`` directory,
By following these steps, you should have a local version of the TStore documentation in the `docs/build/html/` directory,
ready for review or deployment!
28 changes: 14 additions & 14 deletions docs/environment.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: build-doc-tstore
channels:
- conda-forge
- conda-forge
dependencies:
- python>=3.9
- docutils
- jupyter
- nbsphinx==0.9.3
- pandoc
- pip
- python>=3.9
- sphinx-book-theme==1.1.0
- sphinx-gallery
- sphinx-mdinclude==0.5.3
- sphinx==7.2.6
- sphinxcontrib-youtube
- ts-store
- pip:
- ts-store
- jupyter
- pandoc
- docutils
- nbsphinx==0.9.3
- sphinx==7.2.6
- sphinx-book-theme==1.1.0
- sphinx-mdinclude==0.5.3
- sphinx-gallery
- sphinxcontrib-youtube
- pip
- pip:
- ts-store
4 changes: 1 addition & 3 deletions docs/source/00_introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Concepts are introduced in a progressive manner, but feel free to skip to the se
TSLONG
---------------

TODO

.. _tsdf:
Expand All @@ -30,5 +30,3 @@ TSArray
~~~~~~~~

TODO


5 changes: 2 additions & 3 deletions docs/source/03_quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
Quick Start
===========

TStore allows to manipulate efficiently timeseries database with ease.
TStore allows to manipulate efficiently timeseries database with ease.

TODO
TODO


You are now ready to explore the various :ref:`tutorials <tutorials>` available in the documentation and learn more about the TStore functionalities.

3 changes: 2 additions & 1 deletion tstore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""tstore."""

import contextlib
from importlib.metadata import PackageNotFoundError, version

Expand All @@ -18,4 +19,4 @@

# Get version
with contextlib.suppress(PackageNotFoundError):
__version__ = version("tstore")
__version__ = version("tstore")
1 change: 1 addition & 0 deletions tstore/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union

VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
Expand Down

0 comments on commit 9dd0952

Please sign in to comment.