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
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include LICENSE
include README.md
include pyproject.toml
recursive-include tafra *.py *.c *.h py.typed
recursive-include test *.py *.csv
exclude CLAUDE.md
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Version History

## 2.2.4

* **Fix**: Restore `MANIFEST.in` so test CSV fixtures (`test/ex*.csv`) are
included in the PyPI sdist. Removing `MANIFEST.in` in 2.2.1 silently
broke the conda-forge test stage for 2.2.1, 2.2.2, and 2.2.3 because
`source_files: test` could not find the CSVs. No code changes.

## 2.2.3

* **Feature**: `read_sql` and `read_sql_chunks` accept an optional
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "tafra"
version = "2.2.3"
version = "2.2.4"
description = "Tafra: essence of a dataframe"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "tafra" %}
{% set version = "2.2.3" %}
{% set version = "2.2.4" %}


package:
Expand Down