Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
stumpylog committed Dec 16, 2024
1 parent ab200eb commit 1bf3544
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 67 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repos:
- id: check-case-conflict
- id: detect-private-key
- repo: https://github.com/rbubley/mirrors-prettier
rev: "v3.3.3"
rev: "v3.4.2"
hooks:
- id: prettier
types_or:
Expand All @@ -36,13 +36,13 @@ repos:
exclude: "(^Pipfile\\.lock$)"
# Python hooks
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.7.0'
rev: 'v0.8.3'
hooks:
# Run the linter.
- id: ruff
# Run the formatter.
- id: ruff-format
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "2.4.3"
rev: "v2.5.0"
hooks:
- id: pyproject-fmt
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Dependency updates

## [0.9.0] - 2024-10-23

### Added
Expand Down
4 changes: 1 addition & 3 deletions main_untagged.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,7 @@ def _main() -> None:
config.owner_or_org,
config.is_org,
) as api:
for to_delete_name in untagged_versions:
to_delete_version = untagged_versions[to_delete_name]

for to_delete_name, to_delete_version in untagged_versions.items():
if config.delete:
logger.info(
f"Deleting id {to_delete_version.id} named {to_delete_version.name}",
Expand Down
Loading

0 comments on commit 1bf3544

Please sign in to comment.