Skip to content

Commit

Permalink
Bump minimum typer and poetry versions (#61)
Browse files Browse the repository at this point in the history
* Update typer and coverage versions in pyproject.toml

The versions for dependencies 'typer' and 'coverage' have been updated. Typer was updated from version 0.10.0 to 0.11.1, while coverage was upgraded from 7.4.3 to 7.4.4. This was done to keep the package dependencies up-to-date and possibly to include any recent bug fixes, performance improvements, or new features provided in the newer versions.

* Reorder dependencies to match project config

---------

Co-authored-by: Altay Sansal <altay.sansal@tgs.com>
  • Loading branch information
tasansal and Altay Sansal authored Mar 29, 2024
1 parent d5ef5fa commit f4d2e2a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 25 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
sphinx==7.2.6
sphinx-design==0.5.0
sphinxcontrib-typer==0.1.12
sphinx-copybutton==0.5.2
furo==2024.1.29
myst-nb==1.0.0
linkify-it-py==2.0.3
autodoc-pydantic==2.1.0
sphinxcontrib-typer==0.1.12
39 changes: 18 additions & 21 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pydantic = "^2.6.4"
pydantic-settings = "^2.2.1"
numba = "^0.59.0"
pandas = "^2.2.1"
typer = {version = "^0.10.0", extras = ["all"]}
typer = {version = "^0.11.1", extras = ["all"]}
gcsfs = {version = ">=2024.2.0", optional = true}
s3fs = {version = ">=2024.2.0", optional = true}
adlfs = {version = ">=2024.2.0", optional = true}
Expand All @@ -35,7 +35,7 @@ click-params = "^0.5.0"

[tool.poetry.group.dev.dependencies]
ruff = "^0.3.4"
coverage = {version = "^7.4.3", extras = ["toml"]}
coverage = {version = "^7.4.4", extras = ["toml"]}
mypy = "^1.9.0"
pytest = "^8.1.1"
pre-commit = "^3.7.0"
Expand All @@ -52,8 +52,8 @@ furo = "^2024.1.29"
myst-nb = "^1.0.0"
linkify-it-py = "^2.0.3"
autodoc-pydantic = "^2.1.0"
sphinx-autobuild = "^2024.2.4"
sphinxcontrib-typer = "^0.1.12"
sphinx-autobuild = "^2024.2.4"

[tool.poetry.extras]
cloud = ["s3fs", "gcsfs", "adlfs"]
Expand Down

0 comments on commit f4d2e2a

Please sign in to comment.