Skip to content

Commit

Permalink
Added a CHANGELOG file
Browse files Browse the repository at this point in the history
  • Loading branch information
Seher Karakuzu authored and Seher Karakuzu committed Mar 14, 2024
1 parent 2ff7697 commit acc9cee
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!-- Add the recent changes in the code under the relevant category.
Write the date in place of the "Unreleased" in the case a new version is released. -->

# Changelog

## Unreleased

### Added
* Added a new `.append_partition` method in the server client dataframe to append `csv` files.
### Removed
### Changed
### Fixed

2 changes: 2 additions & 0 deletions tiled/_tests/test_writing.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
from ..structures.table import TableStructure
from ..validation_registration import ValidationRegistry
from .utils import fail_with_status_code
from pandas.testing import assert_frame_equal

validation_registry = ValidationRegistry()
validation_registry.register("SomeSpec", lambda *args, **kwargs: None)
Expand Down Expand Up @@ -518,3 +519,4 @@ def test_append_partition(tree):
assert [row for col in x.columns for row in x[col]] == [
row for col in df3.columns for row in df3[col]
]

0 comments on commit acc9cee

Please sign in to comment.