Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# the repo (*). Unless a later match takes precedence,
# the following will be requested for
# review when someone opens a pull request.
* @gisellerosetta
* @shilohd
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ gptables/examples/*.xlsx
gptables/test/actual_workbook.xlsx
.vscode/
site/
.venv
.venv
*.xlsx
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Requirements
------------
- Python 3.9+

Using an earlier version? Install `gptables` version before 2.0.0.

Install
-------
gptables is available from `PyPI`_.
Expand Down
9 changes: 5 additions & 4 deletions docs/info/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@ and this project tries its very best to adhere to

---

## Unreleased
## Latest

* **Date:**
2025-10-08
2025-11-11

**Added**

* Merged pull request templates to create new one
* Requirements and installation steps to README
* Pre-commit hooks
* Code owners file
* More examples

**Removed**

Expand All @@ -32,8 +34,7 @@ and this project tries its very best to adhere to
* Updated pull request template
* Docs moved from readthedocs to mkdocs
* Docs are restructured

## Released (PyPI)
* Fixed auto column widths

### v1.2.0

Expand Down
6 changes: 3 additions & 3 deletions gptables/core/gptable.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ def __init__(
source: Optional[str] = None,
units: Optional[Dict[Any, Any]] = None,
table_notes: Optional[Dict[Any, Any]] = None,
subtitles: Optional[List[Any]] = None,
subtitles: Optional[List[Any]] = [],
instructions: str = "",
legend: Optional[List[Any]] = None,
legend: Optional[List[Any]] = [],
index_columns: Optional[Dict[int, int]] = None,
additional_formatting: Optional[List[Dict[str, Any]]] = None,
additional_formatting: Optional[List[Dict[str, Any]]] = [],
) -> None:

# Attributes
Expand Down