Skip to content

Commit

Permalink
organized dependencies
Browse files Browse the repository at this point in the history
issue #51
  • Loading branch information
wilsonfreitas committed Jun 23, 2024
1 parent b12bf4f commit 242a30f
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 45 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### version 1.0.15 (2024-06-23)

* Organized dependencies (Issue #51)

### version 1.0.14 (2024-06-17)

* Support to Python 3.12 (Issue #50)
Expand Down
65 changes: 33 additions & 32 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 12 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
[tool.poetry]
name = "bizdays"
version = "1.0.14"
version = "1.0.15"
description = "Functions to handle business days calculations"
authors = ["wilsonfreitas <[email protected]>"]
readme = "README.md"
include = ["ANBIMA.cal", "B3.cal", "Actual.cal"]

[tool.poetry.dependencies]
python = ">=3.9"
pandas-market-calendars = ">=4.3.1"
pandas-market-calendars = "^4"
pandas = "^2"

[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.3"
pycodestyle = ">=2.11.1"
ipykernel = ">=6.26.0"
pytest = "*"
pycodestyle = "*"
ipykernel = "*"

[tool.poetry.group.docs.dependencies]
Sphinx = ">=5.1.1"
nbsphinx = ">=0.8.9"
matplotlib = ">=3.5.3"
numpy = ">=1.26.0"
lxml = ">=4.9.1"
pandas = ">=2.0.0"
alabaster = ">=0.7.12"
ipywidgets = ">=8.0.2"
Sphinx = "*"
nbsphinx = "*"
matplotlib = "*"
lxml = "*"
alabaster = "*"
ipywidgets = "*"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 242a30f

Please sign in to comment.