Skip to content

Commit

Permalink
Merge pull request #346 from hartwork/prepare-release
Browse files Browse the repository at this point in the history
Prepare release 2.9.0
  • Loading branch information
hartwork authored Nov 1, 2024
2 parents 1373698 + 03426a7 commit 7da458f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre_commit_detect_outdated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Install pre-commit
run: |-
pip install \
pip3 install \
--disable-pip-version-check \
--no-warn-script-location \
--user \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre_commit_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Install pre-commit
run: |-
pip install \
pip3 install \
--disable-pip-version-check \
--user \
--no-warn-script-location \
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![Run Python test suite](https://github.com/hartwork/grub2-theme-preview/actions/workflows/python_test_suite.yml/badge.svg)](https://github.com/hartwork/grub2-theme-preview/actions/workflows/python_test_suite.yml)
[![Packaging status](https://repology.org/badge/tiny-repos/grub2-theme-preview.svg)](https://repology.org/project/grub2-theme-preview/versions)


# About
Expand All @@ -22,13 +23,13 @@ that image in a virtual machine using KVM/QEMU, all without root privileges.
To install the latest release from [PyPI](https://pypi.org/):

```console
# pip install --user grub2-theme-preview
# pip3 install --user grub2-theme-preview
```

To install from a Git clone _for development_:

```console
# pip install --user --editable .
# pip3 install --user --editable .
```

Please make sure to install these _non-PyPI dependencies_ as well:
Expand Down
2 changes: 1 addition & 1 deletion grub2_theme_preview/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (C) 2015 Sebastian Pipping <[email protected]>
# Licensed under GPL v2 or later

_VERSION = (2, 8, 0)
_VERSION = (2, 9, 0)
VERSION_STR = ".".join([str(e) for e in _VERSION])

0 comments on commit 7da458f

Please sign in to comment.