Skip to content

Commit

Permalink
Merge pull request #71 from prio-data/dependency_update
Browse files Browse the repository at this point in the history
include explicit dependencies for numpy, pandas, ipython, fix bug whi…
  • Loading branch information
jimdale authored Nov 5, 2024
2 parents c35851d + 318a695 commit b8ae29a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "viewser"
version = "6.6.3"
version = "6.6.4"
description = "The Views 3 CLI tool"
authors = ["peder2911 <[email protected]>"]
readme = "README.md"
Expand All @@ -11,7 +11,6 @@ license = "CC-BY-NC"
python = "^3.9"
requests = "^2.27.1"
environs = "^9.3.1"
pandas = "^1.4.0"
fitin = "^0.2.0"
pydantic = "^2.0.0"
crayons = "^0.4.0"
Expand All @@ -30,6 +29,9 @@ views-storage = "^1.1.0"
tqdm = "^4.66.0"
views_tensor_utilities = ">=1.0.0"
pyod = "<1.1.0"
pandas = "^1.4.0"
numpy = "^1.2.0"
ipython = "^8.0.0"

[tool.poetry.scripts]
viewser = "viewser.cli:viewser"
Expand Down
3 changes: 2 additions & 1 deletion viewser/commands/config/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ def config_list(obj: Dict[str, Any]):
"""
Show all current configuration values
"""
click.echo(obj["table_formatter"].formatted(DictModel(values = settings.config.list().items())))
# click.echo(obj["table_formatter"].formatted(DictModel(values = settings.config.list().items())))
click.echo(obj["table_formatter"].formatted(DictModel(values = settings.config.list())))

@cli.command(name="unset", short_help="unset a configuration value")
@click.confirmation_option(prompt="Unset config key?")
Expand Down

0 comments on commit b8ae29a

Please sign in to comment.