about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-08-10 11:35:51 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-08-10 11:35:51 +0700
commitdc23143f72876236121b8f1eced47e9beda49348 (patch)
tree139da321cfa98f612d4d6447094f6da6f340bc12
parent54e258ed28d3615a146ea8380dfd83e42d582367 (diff)
downloadbrutalmaze-dc23143f72876236121b8f1eced47e9beda49348.tar.gz
Fix CI 1.1.1
Palace 0.2.5 manylinux wheels seem to be broken.
-rw-r--r--.build.yml2
-rw-r--r--brutalmaze/__init__.py2
-rw-r--r--brutalmaze/__main__.py2
-rw-r--r--pyproject.toml2
-rw-r--r--tox.ini1
5 files changed, 4 insertions, 5 deletions
diff --git a/.build.yml b/.build.yml
index ece18ee..0f652d9 100644
--- a/.build.yml
+++ b/.build.yml
@@ -1,9 +1,7 @@
 image: debian/sid
 packages:
-  - pulseaudio
   - tox
 sources:
   - https://git.sr.ht/~cnx/brutalmaze
 tasks:
-  - init: pulseaudio --start
   - lint: tox -c brutalmaze
diff --git a/brutalmaze/__init__.py b/brutalmaze/__init__.py
index 9c88e1b..36fbdf6 100644
--- a/brutalmaze/__init__.py
+++ b/brutalmaze/__init__.py
@@ -1,3 +1,3 @@
 """Minimalist thrilling shoot 'em up game"""
 
-__version__ = '1.1.0'
+__version__ = '1.1.1'
diff --git a/brutalmaze/__main__.py b/brutalmaze/__main__.py
index 24ae082..c21b97d 100644
--- a/brutalmaze/__main__.py
+++ b/brutalmaze/__main__.py
@@ -23,7 +23,7 @@ from contextlib import redirect_stdout
 from importlib.resources import open_binary, open_text, read_text
 from io import StringIO
 from math import atan2, pi, radians
-from os.path import join as pathjoin, pathsep
+from os.path import pathsep
 from socket import SO_REUSEADDR, SOL_SOCKET, socket
 from sys import stdout
 from threading import Thread
diff --git a/pyproject.toml b/pyproject.toml
index 864eb7c..063b6b0 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,7 +8,7 @@ author = 'Nguyễn Gia Phong'
 author-email = 'mcsinyx@disroot.org'
 home-page = 'https://sr.ht/~cnx/brutalmaze'
 requires = ['loca', 'palace', 'pygame>=2']
-description-file = 'README.rst'
+description-file = 'README.md'
 classifiers = [
     'Development Status :: 5 - Production/Stable',
     'Environment :: MacOS X',
diff --git a/tox.ini b/tox.ini
index 17f4d81..81dee4d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,6 +4,7 @@ minversion = 3.3
 isolated_build = True
 
 [testenv]
+skip_install = True
 deps =
     flake8-builtins
     isort