Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
can/must now use latest releases of synthplayer and miniaudio
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Jul 4, 2019
1 parent 82b2d31 commit 3c669a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ in the 'caves' folder.
Did you download only a ```*.pyz``` file? Do this:
1. install Python 3.5 or newer from https://www.python.org/downloads/
1. open a command prompt and type:
``pip install --user pillow "synthplayer==2.2.1" "miniaudio<=1.3"``
``pip install --user pillow synthplayer miniaudio"``
(or use "``sounddevice``" or "``soundcard``" instead of "``miniaudio``" if you prefer another audio api)
1. double-click on the ``*.pyz`` file that you downloaded.

Expand All @@ -153,7 +153,7 @@ just launch the ``startgame-venv.py`` script and it will take care of that for y

Alternatively:

1. make sure you have installed the python libraries: ``pillow``, ``synthplayer==2.2.1`` and ``miniaudio<=1.3``
1. make sure you have installed the python libraries: ``pillow``, ``synthplayer`` and ``miniaudio``
(or one of the other supported sound libraries). You can often find them in your package manager or install them with pip.
This can be done easily with ``pip install -r requirements.txt``
1. if you want to play the version with synthesized sounds, you're all set.
Expand Down
2 changes: 1 addition & 1 deletion bouldercaves/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from .caves import colorpalette, Palette
from . import audio, synthsamples, tiles, objects, bdcff

__version__ = "5.7.1"
__version__ = "5.7.2"


class BoulderWindow(tkinter.Tk):
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pillow
miniaudio<=1.3
synthplayer==2.2.1
miniaudio>=1.5
synthplayer>=2.3

0 comments on commit 3c669a1

Please sign in to comment.