diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f98c8f6..5d72547 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -76,15 +76,10 @@ jobs: run: >- python -m pip install - build + wheel --user - name: Build a binary wheel and a source tarball - run: >- - python -m - build - --sdist - --wheel - --outdir dist/ + run: python setup.py sdist bdist_wheel # - name: Publish distribution 📦 to Test PyPI # uses: pypa/gh-action-pypi-publish@release/v1 # with: diff --git a/CherryTomato/__init__.py b/CherryTomato/__init__.py index 5fa8db3..871de4c 100644 --- a/CherryTomato/__init__.py +++ b/CherryTomato/__init__.py @@ -1,6 +1,4 @@ -""" -Easy to use, flexible PyQt5 Pomodoro Technique timer. -""" +"""Easy to use, flexible PyQt5 Pomodoro Technique timer.""" import os diff --git a/CherryTomato/main.py b/CherryTomato/main.py index 3c90ac5..2572a1e 100755 --- a/CherryTomato/main.py +++ b/CherryTomato/main.py @@ -52,6 +52,9 @@ def main(): app = Qt.QApplication(sys.argv) + # https://bugs.documentfoundation.org/show_bug.cgi?id=125934 + app.setDesktopFileName('cherrytomato.desktop') + settings = CherryTomatoSettings.createQT() if not settings.useSystemFont: diff --git a/README.md b/README.md index 3689998..933930a 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ * Arch Linux * KDE5 -* Xorg X server +* Xorg X server | Wayland session * FullHD Display * Python 3.7, 3.8, 3.9