From 48d85aac476cf3a2d1a48faf35cc03c922ff0467 Mon Sep 17 00:00:00 2001 From: SoloSynth1 Date: Wed, 26 Jun 2024 14:20:45 -0700 Subject: [PATCH] add pandas' extra dependency; bump version to 0.1.1 --- docs/conf.py | 4 ++-- poetry.lock | 4 +++- pyproject.toml | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index f368f1c..2925b50 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,8 +10,8 @@ copyright = "2024, John Shiu, Orix Au Yeung, Tony Shum, and Yingzi Jin" author = "John Shiu, Orix Au Yeung, Tony Shum, and Yingzi Jin" -release = '0.1.0' -version = '0.1.0' +release = '0.1.1' +version = '0.1.1' # -- General configuration --------------------------------------------------- diff --git a/poetry.lock b/poetry.lock index bd1781c..8a35374 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2480,9 +2480,11 @@ files = [ ] [package.dependencies] +jinja2 = {version = ">=3.1.2", optional = true, markers = "extra == \"output-formatting\""} numpy = {version = ">=1.26.0", markers = "python_version >= \"3.12\""} python-dateutil = ">=2.8.2" pytz = ">=2020.1" +tabulate = {version = ">=0.9.0", optional = true, markers = "extra == \"output-formatting\""} tzdata = ">=2022.7" [package.extras] @@ -4671,4 +4673,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "9897b08606b1cb8eaf148ae5f670652bfe73f310317127275fa445071ae59342" +content-hash = "73d2edd1c52db58fbb0b7743f5a3759e839666a57dea8fbd7585ebca2fd8ecd6" diff --git a/pyproject.toml b/pyproject.toml index a82d23f..ebf905b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fixml" -version = "0.1.0" +version = "0.1.1" description = "Package for automated test evaluation and creation" authors = ["John Shiu, Orix Au Yeung, Tony Shum, Yingzi Jin"] license = "MIT" @@ -10,7 +10,7 @@ include = ["src/fixml/data"] [tool.poetry.dependencies] python = "^3.12" fire = "^0.6.0" -pandas = "^2.2.2" +pandas = {extras = ["output-formatting"], version = "^2.2.2"} pypandoc = "^1.13" python-dotenv = "^1.0.1" ruamel-yaml = "^0.18.6"