From b3e0a20a4b8a7405cc818b3f811ebce320915b6c Mon Sep 17 00:00:00 2001 From: Hauke Schulz <43613877+observingClouds@users.noreply.github.com> Date: Thu, 3 Oct 2024 09:54:39 +0200 Subject: [PATCH] add missing dependency (#21) * add missing dependency fixes #19 * Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ pyproject.toml | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3047cd1..b07c9af 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## vX.X.X + +### Changed + +- add missing `psutil` requirement. [\#21](https://github.com/mllam/mllam-data-prep/pull/21). + ## [v0.3.0](https://github.com/mllam/mllam-data-prep/releases/tag/v0.3.0) [All changes](https://github.com/mllam/mllam-data-prep/compare/v0.3.0...v0.2.0) diff --git a/pyproject.toml b/pyproject.toml index b0f499f..5d79aab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ dependencies = [ "semver>=3.0.2", "rich>=13.7.1", "dask>=2024.2.1", + "psutil>=5.7.2", ] requires-python = ">=3.9" readme = "README.md"