From 06a60647e7de3253700e62490b3b35509d7c437f Mon Sep 17 00:00:00 2001 From: Chris Kucharczyk Date: Wed, 18 Dec 2024 16:18:57 +0000 Subject: [PATCH] update changelog, version number, and explicitly include numpy in requirements --- HISTORY.md | 11 ++++++++++- pyproject.toml | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index eec3261..8c1d91d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,9 +2,18 @@ ## [Unreleased] +## [v0.0.2] (2024-12-18) + +### Changed + +- Update README links (#2) +- Clarify overwrite syntax for db download (#4) +- Fix linting issue due to numpy 2.2.0 (#5) + ## [v0.0.1] (2024-11-29) Initial release! 🎉 -[Unreleased]: https://github.com/scienceforamerica/scipeds/comare/v0.0.1...HEAD +[Unreleased]: https://github.com/scienceforamerica/scipeds/compare/v0.0.2...HEAD +[v0.0.2]: https://github.com/scienceforamerica/scipeds/compare/v0.0.1...v0.0.2 [v0.0.1]: https://github.com/scienceforamerica/scipeds/releases/tag/v0.0.1 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c30d017..9291837 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,11 +4,12 @@ build-backend = "flit_core.buildapi" [project] name = "scipeds" -version = "0.0.1" +version = "0.0.2" dependencies = [ "cloudpathlib[gs]", "duckdb", "lxml", + "numpy", "openpyxl", "pandas", "platformdirs",