Skip to content

Commit 7fee165

Browse files
committed
list requests as explicit dependency
1 parent d2f4627 commit 7fee165

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.7.2] - 2024-01-03
9+
### Fixed
10+
- list requests as explicit dependency
11+
812
## [0.7.1] - 2023-12-26
913
### Fixed
1014
- turn off color if rich dependency is present, and enforce its presence

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "optimal-congress"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = "CLI to find an optimal, personal schedule for the 37c3 congress."
55
homepage = "https://github.com/top-on/optimal-congress"
66
authors = ["top-on <top-on@posteo.de>"]
@@ -9,12 +9,13 @@ packages = [{ include = "optimal_congress" }]
99

1010
[tool.poetry.dependencies]
1111
python = "^3.10"
12-
pydantic = "^2.5.2"
13-
typer = { extras = ["all"], version = "^0.9.0" } # extras include rich
14-
pytz = "^2023.3.post1"
15-
pulp = "^2.7.0"
1612
pandas = "^2.1.4"
1713
pandera = "^0.18.0"
14+
pulp = "^2.7.0"
15+
pydantic = "^2.5.2"
16+
pytz = "^2023.3.post1"
17+
requests = "^2.31.0"
18+
typer = { extras = ["all"], version = "^0.9.0" } # extras include rich
1819

1920
[tool.poetry.group.dev.dependencies]
2021
ipykernel = "^6.27.1"

0 commit comments

Comments
 (0)