From dc23143f72876236121b8f1eced47e9beda49348 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Tue, 10 Aug 2021 11:35:51 +0700 Subject: Fix CI Palace 0.2.5 manylinux wheels seem to be broken. --- .build.yml | 2 -- brutalmaze/__init__.py | 2 +- brutalmaze/__main__.py | 2 +- pyproject.toml | 2 +- tox.ini | 1 + 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 -- cgit 1.4.1