Skip to content

Commit

Permalink
Update package versions in pyproject.toml (#120)
Browse files Browse the repository at this point in the history
The dependencies in pyproject.toml have been updated to more recent versions. This includes major packages such as fsspec, pydantic, gcsfs and s3fs among others, and also minor updates for development and documentation tools. This update ensures compatibility with the latest release of these packages.

Co-authored-by: Altay Sansal <[email protected]>
  • Loading branch information
tasansal and Altay Sansal authored Jun 4, 2024
1 parent 5610f3f commit 2cf9fa4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
33 changes: 17 additions & 16 deletions poetry.lock

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

26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,39 @@ keywords = ["segy", "seismic", "data", "geophysics"]

[tool.poetry.dependencies]
python = ">=3.9, <3.13"
fsspec = "^2024.3.1"
fsspec = ">=2024.6.0"
numpy = "^1.26.4"
pydantic = "^2.7.1"
pydantic-settings = "^2.2.1"
pydantic = "^2.7.3"
pydantic-settings = "^2.3.0"
numba = "^0.59.1"
pandas = "^2.2.2"
bidict = "^0.23.1"
typer = "^0.12.3"
gcsfs = {version = ">=2024.3.1", optional = true}
s3fs = {version = ">=2024.3.1", optional = true}
gcsfs = {version = ">=2024.6.0", optional = true}
s3fs = {version = ">=2024.6.0", optional = true}
adlfs = {version = ">=2024.4.1", optional = true}
eval-type-backport = {version = "^0.1.3", python = "<3.10"}

[tool.poetry.group.dev.dependencies]
ruff = "^0.4.3"
coverage = {version = "^7.5.1", extras = ["toml"]}
ruff = "^0.4.7"
coverage = {version = "^7.5.3", extras = ["toml"]}
mypy = "^1.10.0"
pytest = "^8.2.0"
pre-commit = "^3.7.0"
pytest = "^8.2.2"
pre-commit = "^3.7.1"
pre-commit-hooks = "^4.6.0"
typeguard = "^4.2.1"
typeguard = "^4.3.0"
urllib3 = "^1.26.18" # Workaround for poetry-plugin-export/issues/183
pandas-stubs = "^2.2.1.240316"
pandas-stubs = "^2.2.2.240603"

[tool.poetry.group.docs.dependencies]
sphinx = "^7.3.7"
sphinx-design = "^0.5.0"
sphinx-design = "^0.6.0"
sphinx-copybutton = "^0.5.2"
furo = ">=2024.5.6"
myst-nb = "^1.1.0"
linkify-it-py = "^2.0.3"
autodoc-pydantic = "^2.2.0"
sphinxcontrib-typer = "^0.2.1"
sphinxcontrib-typer = "^0.3.0"
sphinx-autobuild = ">=2024.4.16"

[tool.poetry.extras]
Expand Down

0 comments on commit 2cf9fa4

Please sign in to comment.