diff --git a/CHANGELOG.md b/CHANGELOG.md index 2405433..a0591f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.0] - 2024-09-17 10:27:10 + +### Fixed + +- Moved heavy dependencies to dev. + ## [1.2.1] - 2024-09-16 08:04:08 ### Fixed @@ -53,6 +59,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +[1.3.0]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.2.1...1.3.0 [1.2.1]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.1.1...1.2.0 [1.1.1]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.1.0...1.1.1 diff --git a/changelog.yaml b/changelog.yaml index cf1d9b6..77b6197 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -35,3 +35,8 @@ fixed: - Bug in docs where prerequisites wouldn't load in GCP. date: 2024-09-16 08:04:08 +- bump: minor + changes: + fixed: + - Moved heavy dependencies to dev. + date: 2024-09-17 10:27:10 diff --git a/pyproject.toml b/pyproject.toml index 075c803..6bc4e29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "policyengine_us_data" -version = "1.2.1" +version = "1.3.0" description = "A package to create representative microdata for the US." readme = "README.md" authors = [ @@ -14,12 +14,8 @@ license = {file = "LICENSE"} requires-python = ">=3.10" dependencies = [ "policyengine_core", - "tables", - "survey_enhance", - "torch", "requests", "tqdm", - "tabulate", "build", "tomli" ] @@ -30,6 +26,10 @@ dev = [ "pytest", "policyengine_us==1.71.1", "streamlit", + "survey_enhance", + "torch", + "tables", + "tabulate", ] [tool.setuptools]