From b5163eb1a6d011ae4727601ec608fd96b5e3a0a6 Mon Sep 17 00:00:00 2001 From: William Dye Date: Fri, 15 Sep 2023 15:31:53 -0400 Subject: [PATCH] Change package name to avoid conflicts; bump version to 1.0.2 --- README.md | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c9dbc92..e6a3d89 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ ensure that you have a semi-recent version of Python installed before proceeding Run the following command in a shell (a UNIX-like environment is assumed): ``` -$ pip install sudoku +$ pip install sudoku-ui ``` The package does not have any dependencies besides Python itself. If you wish to sandbox your diff --git a/pyproject.toml b/pyproject.toml index 2688be7..a701baf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,8 +3,8 @@ requires = ['setuptools'] build-backend = 'setuptools.build_meta' [project] -name = 'sudoku' -version = '1.0.1' +name = 'sudoku-ui' +version = '1.0.2' description = 'Solve sudoku puzzles using various algorithms' license = {file = 'LICENSE'} readme = 'README.md'