Skip to content

Commit

Permalink
Merge pull request #375 from gaiaresources/dependency_upgrade
Browse files Browse the repository at this point in the history
BDRSPS-1137 Dependency upgrades
  • Loading branch information
Lincoln-GR authored Jan 3, 2025
2 parents b148285 + 5ba9b5c commit 1f13c43
Show file tree
Hide file tree
Showing 7 changed files with 635 additions and 639 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
contents: write
env:
PYTHON_VERSION: "3.11"
POETRY_VERSION: "1.8.4"
POETRY_VERSION: "1.8.5"
jobs:
documentation:
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- 'release/**'
env:
PYTHON_VERSION: "3.11"
POETRY_VERSION: "1.8.4"
POETRY_VERSION: "1.8.5"
jobs:
poetry-lock:
# Job to check poetry lock file is present, up-to-date with pyproject.toml,
Expand Down
2 changes: 1 addition & 1 deletion abis_mapping/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from . import coordinates
from . import default_lookup
from . import empty
from . import list
from . import list_field
from . import logical_or
from . import lookup_match
from . import mutual_exclusion
Expand Down
File renamed without changes.
1,242 changes: 619 additions & 623 deletions poetry.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@ frictionless = {extras = ["excel"], version = "^5.18.0"}
python-dateutil = "^2.9.0.post0"
shapely = "^2.0.6"
pyproj = "^3.7.0"
pydantic = "^2.9.2"
pydantic-settings = "^2.6.1"
numpy = "^2.1.2"
attrs = "^24.2.0"
pydantic = "^2.10.4"
pydantic-settings = "^2.7.0"
numpy = "^2.2.0"
attrs = "^24.3.0"

[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
pytest-mock = "^3.14.0"
mypy = "==1.13.0"
types-python-dateutil = "==2.9.0.20241003" # keep version synced with actual library
ruff = "==0.7.1"
ruff = "==0.8.4"
pandas = "^2.2.3"
pyshacl = "^0.28.1"
pyshacl = "^0.29.1"
jinja2 = "^3.1.4"
mkdocs-material = "^9.5.42"
mkdocs-material = "^9.5.49"
mike = "^2.1.3"
poethepoet = "^0.29.0"
jsonschema-markdown = "^0.3.13"
poethepoet = "^0.31.1"
jsonschema-markdown = "^0.3.18"

[tool.poe.tasks]
lint = "ruff check"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_list_type_read(
expected (Optional[list[str]]): Expected outcome of reading the value.
"""
# Instantiate the field
field = plugins.list.ListField(
field = plugins.list_field.ListField(
name="testField",
format=format,
delimiter=delimiter,
Expand Down Expand Up @@ -118,7 +118,7 @@ def test_list_type_write(
expected (str): Expected outcome of writing the value.
"""
# Instantiate the Field
field = plugins.list.ListField(
field = plugins.list_field.ListField(
name="testField",
format=format,
delimiter=delimiter,
Expand Down

0 comments on commit 1f13c43

Please sign in to comment.