From 004ccb8e0af78d057b9f9f0feeffd7a292903eb7 Mon Sep 17 00:00:00 2001 From: jmeridth Date: Sun, 5 Jan 2025 16:00:23 -0600 Subject: [PATCH] feat: drop support for python 3.9 Signed-off-by: jmeridth --- .github/workflows/python-package.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 28d07b3..0fc3835 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, 3.11, 3.12] + python-version: [3.11, 3.12, 3.13] steps: - uses: actions/checkout@v4.2.2 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index 2aa2bf3..ae9b4a1 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ jobs: ## Local usage without Docker -1. Have Python v3.9 or greater installed +1. Have Python v3.11 or greater installed 1. Copy `.env-example` to `.env` 1. Fill out the `.env` file with a _token_ from a user that has access to the organization to scan (listed below). Tokens should have admin:org or read:org access. 1. Fill out the `.env` file with the desired _inactive_days_ value. This should be a whole positive number representing the amount of inactivity that you want for flagging stale repos. @@ -264,7 +264,7 @@ jobs: ## Local testing without Docker -1. Have Python v3.9 or greater installed +1. Have Python v3.11 or greater installed 1. `pip install -r requirements.txt -r requirements-test.txt` 1. `make lint` 1. `make test`