Skip to content

Commit

Permalink
chore(deps-dev): bump the development-dependencies group across 1 dir…
Browse files Browse the repository at this point in the history
…ectory with 8 updates (#3013)

* chore(deps-dev): bump the development-dependencies group across 1 directory with 8 updates

Bumps the development-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [poetry](https://github.com/python-poetry/poetry) | `1.8.3` | `1.8.4` |
| [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.35.35` | `1.35.54` |
| [mypy](https://github.com/python/mypy) | `1.11.2` | `1.13.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.9` | `0.7.2` |
| [moto](https://github.com/getmoto/moto) | `5.0.16` | `5.0.19` |
| [tox](https://github.com/tox-dev/tox) | `4.21.2` | `4.23.2` |
| [bump-my-version](https://github.com/callowayproject/bump-my-version) | `0.27.0` | `0.28.1` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.2.5` | `4.3.0` |



Updates `poetry` from 1.8.3 to 1.8.4
- [Release notes](https://github.com/python-poetry/poetry/releases)
- [Changelog](https://github.com/python-poetry/poetry/blob/1.8.4/CHANGELOG.md)
- [Commits](python-poetry/poetry@1.8.3...1.8.4)

Updates `boto3-stubs` from 1.35.35 to 1.35.54
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

Updates `mypy` from 1.11.2 to 1.13.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11.2...v1.13.0)

Updates `ruff` from 0.6.9 to 0.7.2
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.9...0.7.2)

Updates `moto` from 5.0.16 to 5.0.19
- [Release notes](https://github.com/getmoto/moto/releases)
- [Changelog](https://github.com/getmoto/moto/blob/master/CHANGELOG.md)
- [Commits](getmoto/moto@5.0.16...5.0.19)

Updates `tox` from 4.21.2 to 4.23.2
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.21.2...4.23.2)

Updates `bump-my-version` from 0.27.0 to 0.28.1
- [Release notes](https://github.com/callowayproject/bump-my-version/releases)
- [Changelog](https://github.com/callowayproject/bump-my-version/blob/master/CHANGELOG.md)
- [Commits](callowayproject/bump-my-version@0.27.0...0.28.1)

Updates `jupyterlab` from 4.2.5 to 4.3.0
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

---
updated-dependencies:
- dependency-name: poetry
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: boto3-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: moto
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: tox
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: bump-my-version
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: jupyterlab
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: mypy

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Abdel Jaidi <[email protected]>
  • Loading branch information
dependabot[bot] and jaidisido authored Nov 4, 2024
1 parent 05eeb78 commit c79845b
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 92 deletions.
2 changes: 1 addition & 1 deletion awswrangler/data_quality/_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def update_ruleset(
df_existing = get_ruleset(name=name, boto3_session=boto3_session)
df_existing = df_existing.set_index(keys=["rule_type", "parameter"], drop=False, verify_integrity=True)
df_updated = _rules_to_df(dqdl_rules) if dqdl_rules is not None else df_rules
df_updated = df_updated.set_index(keys=["rule_type", "parameter"], drop=False, verify_integrity=True)
df_updated = df_updated.set_index(keys=["rule_type", "parameter"], drop=False, verify_integrity=True) # type: ignore[union-attr]
merged_df = pd.concat([df_existing[~df_existing.index.isin(df_updated.index)], df_updated])
dqdl_rules = _create_dqdl(merged_df.reset_index(drop=True))
else:
Expand Down
175 changes: 92 additions & 83 deletions poetry.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ ray = ["ray"]
setuptools = "*"
wheel = "^0.44.0"
msgpack = "*"
poetry = "^1.8.3"
poetry = "^1.8.4"

# Lint
boto3-stubs = {version = "^1.35.34", extras = ["athena", "cleanrooms", "chime", "cloudwatch", "dynamodb", "ec2", "emr", "emr-serverless", "glue", "kms", "logs", "neptune", "opensearch", "opensearchserverless", "quicksight", "rds", "rds-data", "redshift", "redshift-data", "s3", "secretsmanager", "ssm", "sts", "timestream-query", "timestream-write"]}
boto3-stubs = {version = "^1.35.54", extras = ["athena", "cleanrooms", "chime", "cloudwatch", "dynamodb", "ec2", "emr", "emr-serverless", "glue", "kms", "logs", "neptune", "opensearch", "opensearchserverless", "quicksight", "rds", "rds-data", "redshift", "redshift-data", "s3", "secretsmanager", "ssm", "sts", "timestream-query", "timestream-write"]}
doc8 = "^1.1"
mypy = "^1.11"
ruff = "^0.6.9"
mypy = "^1.13"
ruff = "^0.7.2"

# Test
moto = "^5.0"
Expand All @@ -121,12 +121,12 @@ pytest-rerunfailures = "^14.0"
pytest-timeout = "^2.3.1"
pytest-xdist = "^3.6.1"
s3fs = "0.4.2" # Must be pinned to 0.4.2
tox = "^4.21.2"
tox = "^4.23.2"

# Docs
bump-my-version = "^0.27.0"
bump-my-version = "^0.28.1"
IPython = "^8.10.0"
jupyterlab = "^4.2"
jupyterlab = "^4.3"
nbsphinx = "^0.9.5"
nbsphinx-link = "^1.3.1"
sphinx = "^7.1"
Expand Down
2 changes: 1 addition & 1 deletion test_infra/stacks/base_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs: str) -> None:

# Add outputs for the EIPs generated by the VPC construct
for public_subnet in self.vpc.public_subnets:
elastic_ip: ec2.CfnEIP = public_subnet.node.find_child("EIP") # type:ignore
elastic_ip: ec2.CfnEIP = public_subnet.node.find_child("EIP") # type: ignore
ssm.StringParameter(
self,
f"{public_subnet.node.id} EIP SSM",
Expand Down

0 comments on commit c79845b

Please sign in to comment.