Skip to content

Commit 1428f2f

Browse files
authored
Merge pull request #92 from UBC-MDS/fix_pypi_links
Fix pypi links
2 parents e2b78b8 + a7ea2f3 commit 1428f2f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@
1414

1515
Sudoku_Validation fits into the Python ecosystem as a specialized utility for Sudoku board validation. While there are other Python packages with similar functionality, such as [sudoku_py](https://github.com/aurbano/sudoku_py) and [CodeWars-Python's Validate_Sudoku_with_size_NxN](https://github.com/Peter-Liang/CodeWars-Python/blob/master/solutions/Validate_Sudoku_with_size_NxN.py), this package emphasizes defensive programming and informative error handling. If you need a focused, well-documented, and reliable Sudoku validation tool, Sudoku_Validation is a strong choice among available Python solutions.
1616

17-
| | |
18-
|--------|--------|
19-
| Package | [![Latest PyPI Version](https://img.shields.io/pypi/v/sudoku_validation.svg)](https://pypi.org/project/sudoku_validation/) [![Supported Python Versions](https://img.shields.io/pypi/pyversions/sudoku_validation.svg)](https://pypi.org/project/sudoku_validation/) [![codecov](https://codecov.io/github/UBC-MDS/Sudoku_Validation/graph/badge.svg?token=Hk51HZyYd4)](https://codecov.io/github/UBC-MDS/Sudoku_Validation)|
20-
| Meta | [![Code of Conduct](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md) |
17+
| Package | [![Test PyPI Version](https://img.shields.io/pypi/v/sudoku_validation?pypiBaseUrl=https://test.pypi.org)](https://test.pypi.org/project/sudoku-validation/) [![Supported Python Versions](https://img.shields.io/pypi/pyversions/sudoku_validation?pypiBaseUrl=https://test.pypi.org)](https://test.pypi.org/project/sudoku-validation/) [![codecov](https://codecov.io/github/UBC-MDS/Sudoku_Validation/graph/badge.svg?token=Hk51HZyYd4)](https://codecov.io/github/UBC-MDS/Sudoku_Validation) |
18+
| ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
19+
| Meta | [![Code of Conduct](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md) |
2120

2221
[Sudoku_Validation](https://github.com/UBC-MDS/Sudoku_Validation) is a project that validates a standard 9 x 9 Sudoku board. It has the ability to validate rows only, columns only, 3x3 squares only, or the entire 9 x 9 board.
2322

@@ -62,10 +61,10 @@ There are other Python packages that provide similar functionality. Here are som
6261
6362
## Get started
6463

65-
You can install this package into your preferred Python environment using pip:
64+
You can install this package into your preferred Python environment using pip. The package is published on [Test PyPI](https://test.pypi.org/project/sudoku-validation/):
6665

6766
```bash
68-
$ pip install sudoku_validation
67+
$ pip install -i https://test.pypi.org/simple/ sudoku-validation
6968
```
7069

7170
To use sudoku_validation in your code:

0 commit comments

Comments
 (0)