From bebe2922e93e4571061d667ffa8c94e7f2c112d6 Mon Sep 17 00:00:00 2001 From: DK Date: Fri, 7 Feb 2025 20:11:02 +0100 Subject: [PATCH 1/2] 188 - update installation and testing steps in readme --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9a1f9348..da131517 100644 --- a/README.md +++ b/README.md @@ -61,11 +61,14 @@ Installation Install this package in the usual way, - python setup.py install + python -m pip install . + + # to install test packages + python -m pip install '.[test]' The test suite can be run by: - python setup.py test + pytest There are a couple of sample scripts, described briefly below. @@ -144,4 +147,4 @@ environments. To run tests against all environments, install tox and run: To run against a specific environment, use the `-e` flag: - >>> tox -e py35 + >>> tox -e py35 \ No newline at end of file From a6f51cd2d29e13d0a11ac3db36f865b2cf9a9dba Mon Sep 17 00:00:00 2001 From: DK Date: Fri, 7 Feb 2025 20:16:01 +0100 Subject: [PATCH 2/2] 188 - formatting (add empty line on the end) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da131517..8b095af9 100644 --- a/README.md +++ b/README.md @@ -147,4 +147,4 @@ environments. To run tests against all environments, install tox and run: To run against a specific environment, use the `-e` flag: - >>> tox -e py35 \ No newline at end of file + >>> tox -e py35