From 46c90a39797933cddadc575763a2ed129364151b Mon Sep 17 00:00:00 2001 From: geo7 Date: Sun, 6 Jul 2025 17:33:33 +0100 Subject: [PATCH] Update test.yml - only test for python 3.13 Also update pyproject.toml with correct URL --- .github/workflows/test.yml | 2 +- README.md | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b8132d..c461ecc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: fail-fast: true matrix: os: [ "ubuntu-latest" ] - python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.13" ] runs-on: ${{ matrix.os }} steps: - name: Check out repository diff --git a/README.md b/README.md index 8ce5c92..32f7428 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ often I'd find my self copying hashes from `git log` output in order to paste into `git rebase -i`. This tools only purpose is to simplify that. -Code is self contained within `main.py`, so you might like to simply copy the whole thing. +Code is self contained within `main.py`, so you could just copy the whole script. ## Usage diff --git a/pyproject.toml b/pyproject.toml index e720510..1720fc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "git_rb" +name = "git-rb" version = "0.1.0" description = "Interface for git rebase." authors = [{ name = "George Lenton", email = "georgelenton@gmail.com" }] @@ -12,7 +12,7 @@ dependencies = [ ] [project.urls] -Homepage = "https://github.com/geo7" +Homepage = "https://github.com/geo7/git-rb" [project.scripts] git-rb = "git_rb.main:main"