Skip to content

Commit

Permalink
- Fixed #146
Browse files Browse the repository at this point in the history
- Fixed #162
- Updated ``requirement.txt`` and ``setup.cfg`` to only install ``dbus-python`` on Linux systems.
- Updated README file as the MacOS instruction was not correct.
  • Loading branch information
eoyilmaz committed Nov 20, 2022
1 parent e55699d commit dc07a26
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ Prerequisites:
Please install these from your package manager.

```shell
# Brew on Macs
brew install pkg-config dbus glib gtk+3
# Brew on MacOS
brew install glib gtk+3 [email protected]

# Debian installs
apt-get install build-essential dbus libglib2.0-dev pkg-config libgtk-3-dev libxxf86vm-dev
Expand Down Expand Up @@ -110,15 +110,6 @@ This should install DisplayCAL. To run the UI:
displaycal
```

ATTENTION!
----------

Previously the ``--install-data=$HOME/.local`` option has to be used with the
``setup.py`` script in order to let the DisplayCAL to find the required data files. But
it is not needed anymore, and it is a good idea to delete the ``DisplayCAL*`` files and
folders from the ``site-packages`` folder of your ``python`` interpreter if you used
that option in a previous version of ``DisplayCAL-py3``.

Road Map
--------

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
attrdict3
build
certifi
dbus-python
dbus-python; sys_platform=='linux'
distro
numpy
Pillow
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ packages = find:
install_requires =
build
certifi
dbus-python
dbus-python;sys_platform == 'linux'
distro
numpy
Pillow
Expand Down

0 comments on commit dc07a26

Please sign in to comment.