From 3466cd6c00fe0a260da4ee2c2b5f804fd8b3b4b8 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Thu, 10 Oct 2024 15:31:18 -0600 Subject: [PATCH] chore: cleanup --- .github/workflows/ci.yml | 3 ++- Makefile | 6 +----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a97296b..92ec7e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,8 @@ on: jobs: lint: - runs-on: ubuntu-latest + # TODO: Use `latest` once we drop support for Python 3.7 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 diff --git a/Makefile b/Makefile index c3d5f29..8b43916 100644 --- a/Makefile +++ b/Makefile @@ -70,10 +70,6 @@ lint-fix: black isort mypy: $(VIRTUAL_BIN)/mypy $(PROJECT_NAME)/ $(TEST_DIR)/ --config-file examples/style_guides/python/pyproject.toml --install-types --non-interactive -## publish - Publish the project to PyPI -publish: - $(VIRTUAL_BIN)/twine upload dist/* - ## release - Cuts a release for the project on GitHub (requires GitHub CLI) # tag = The associated tag title of the release # target = Target branch or full commit SHA @@ -88,4 +84,4 @@ scan: test: $(VIRTUAL_BIN)/pytest -.PHONY: help black black-check build clean coverage docs flake8 install isort isort-check lint lint-fix mypy publish release scan test +.PHONY: help black black-check build clean coverage docs flake8 install isort isort-check lint lint-fix mypy release scan test