From c0e998b882299f279aebfaee9878e926a3b168ba Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Tue, 16 Jan 2024 20:02:50 +0200 Subject: [PATCH] chore: bump up the version --- pyproject.toml | 68 +++++++++++++++++++++++++------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 046bff4..5f3e9d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,26 +4,26 @@ build-backend = "setuptools.build_meta" [project] name = "tetris" -version = "0.1.1" +version = "0.1.2" description = "Tetris game" authors = [{ name = "Kristofers Solo", email = "dev@kristofers.xyz" }] readme = "README.md" requires-python = ">=3.10" license = { file = "LICENSE" } dependencies = [ - "attrs==23.1.0", - "loguru==0.7.2", - "numpy==1.26.3", - "pygame-ce==2.4.0", - "toml==0.10.2", + "attrs==23.1.0", + "loguru==0.7.2", + "numpy==1.26.3", + "pygame-ce==2.4.0", + "toml==0.10.2", ] keywords = ["tetris", "game", "pygame"] classifiers = [ - "Development Status :: 3 - Alpha", - "License :: OSI Approved :: GPLv3 License", - "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", + "Development Status :: 3 - Alpha", + "License :: OSI Approved :: GPLv3 License", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] [project.urls] @@ -45,29 +45,29 @@ warn_unused_configs = true [tool.ruff] extend-select = [ - "B", - "BLE", - "C4", - "ERA", - "I", - "ICN", - "INP", - "ISC", - "N", - "NPY", - "PGH", - "PIE", - # "PTH", - "Q", - "RET", - "RSE", - "RUF", - "S", - "SIM", - "T20", - "TCH", - "TID", - "YTT", + "B", + "BLE", + "C4", + "ERA", + "I", + "ICN", + "INP", + "ISC", + "N", + "NPY", + "PGH", + "PIE", + # "PTH", + "Q", + "RET", + "RSE", + "RUF", + "S", + "SIM", + "T20", + "TCH", + "TID", + "YTT", ] ignore = ["E741"] show-fixes = true