Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jaraco/keyring
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v25.2.0
Choose a base ref
...
head repository: jaraco/keyring
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v25.2.1
Choose a head ref
  • 4 commits
  • 3 files changed
  • 1 contributor

Commits on May 2, 2024

  1. Revert "Allow macos on Python 3.8 to fail as GitHub CI has dropped su…

    …pport."
    
    This reverts commit 744cf2a.
    jaraco committed May 2, 2024
    Copy the full SHA
    67aab15 View commit details

Commits on May 13, 2024

  1. Fix typo in CLI creds mode.

    Closes #681
    jaraco committed May 13, 2024
    Copy the full SHA
    1ec750d View commit details
  2. Copy the full SHA
    788c67c View commit details
  3. Finalize

    jaraco committed May 13, 2024
    Copy the full SHA
    c09855e View commit details
Showing with 11 additions and 2 deletions.
  1. +1 −1 .github/workflows/main.yml
  2. +9 −0 NEWS.rst
  3. +1 −1 keyring/cli.py
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ jobs:
- python: pypy3.10
platform: ubuntu-latest
runs-on: ${{ matrix.platform }}
continue-on-error: ${{ matrix.python == '3.13' || (matrix.python == '3.8' || matrix.python == '3.9') && matrix.platform == 'macos-latest' }}
continue-on-error: ${{ matrix.python == '3.13' }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
9 changes: 9 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v25.2.1
=======

Bugfixes
--------

- Fix typo in CLI creds mode. (#681)


v25.2.0
=======

2 changes: 1 addition & 1 deletion keyring/cli.py
Original file line number Diff line number Diff line change
@@ -132,7 +132,7 @@ def _emit_plain(self, credential: credentials.Credential):
print(credential.username)
print(credential.password)

def _get_cred(self) -> credentials.Credential | None:
def _get_creds(self) -> credentials.Credential | None:
return get_credential(self.service, self.username) # type: ignore

def _get_password(self) -> credentials.Credential | None: