diff --git a/justfile b/justfile index bc2b6602..6cfff8cd 100644 --- a/justfile +++ b/justfile @@ -132,13 +132,6 @@ show-benchmark-results: benchmark-ci: @uv run --group=benchmark-ci pytest --codspeed -# Upgrade Python code to the supplied version. (E.g. just upgrade 310) -[group('maintenance')] -upgrade-python MIN_VERSION: - @find {docs,src,tests} -name "*.py" -not -path "tests/assets/*" -exec uv run pyupgrade --py{{MIN_VERSION}}-plus --exit-zero-even-if-changed {} + - @just autofix-python - @just format-python - # Run all linters, build docs and tests. Worth running before pushing to Github. [group('prepush')] full-check: diff --git a/pyproject.toml b/pyproject.toml index 73e16214..872d2481 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,6 @@ dev = [ "requests==2.32.3", "sqlalchemy==2.0.35", "google-cloud-audit-log==0.3.0", - "pyupgrade>=3.21.0", ] docs = [ "sphinx>=7.4.7",