Skip to content

Commit 3466cd6

Browse files
committed
chore: cleanup
1 parent de61cd1 commit 3466cd6

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88

99
jobs:
1010
lint:
11-
runs-on: ubuntu-latest
11+
# TODO: Use `latest` once we drop support for Python 3.7
12+
runs-on: ubuntu-22.04
1213
steps:
1314
- uses: actions/checkout@v4
1415
- uses: actions/setup-python@v5

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,6 @@ lint-fix: black isort
7070
mypy:
7171
$(VIRTUAL_BIN)/mypy $(PROJECT_NAME)/ $(TEST_DIR)/ --config-file examples/style_guides/python/pyproject.toml --install-types --non-interactive
7272

73-
## publish - Publish the project to PyPI
74-
publish:
75-
$(VIRTUAL_BIN)/twine upload dist/*
76-
7773
## release - Cuts a release for the project on GitHub (requires GitHub CLI)
7874
# tag = The associated tag title of the release
7975
# target = Target branch or full commit SHA
@@ -88,4 +84,4 @@ scan:
8884
test:
8985
$(VIRTUAL_BIN)/pytest
9086

91-
.PHONY: help black black-check build clean coverage docs flake8 install isort isort-check lint lint-fix mypy publish release scan test
87+
.PHONY: help black black-check build clean coverage docs flake8 install isort isort-check lint lint-fix mypy release scan test

0 commit comments

Comments
 (0)