summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md15
-rw-r--r--setup.py4
2 files changed, 8 insertions, 11 deletions
diff --git a/README.md b/README.md
index 884f9eb..93b6f10 100644
--- a/README.md
+++ b/README.md
@@ -40,13 +40,13 @@ idioms for iterating, searching, and modifying the parse tree.
</tag1>
```
-To go beyond the basics, [comprehensive documentation is available](http://www.crummy.com/software/BeautifulSoup/bs4/doc/).
+To go beyond the basics, [comprehensive documentation is available](https://www.crummy.com/software/BeautifulSoup/bs4/doc/).
# Links
-* [Homepage](http://www.crummy.com/software/BeautifulSoup/bs4/)
-* [Documentation](http://www.crummy.com/software/BeautifulSoup/bs4/doc/)
-* [Discussion group](http://groups.google.com/group/beautifulsoup/)
+* [Homepage](https://www.crummy.com/software/BeautifulSoup/bs4/)
+* [Documentation](https://www.crummy.com/software/BeautifulSoup/bs4/doc/)
+* [Discussion group](https://groups.google.com/group/beautifulsoup/)
* [Development](https://code.launchpad.net/beautifulsoup/)
* [Bug tracker](https://bugs.launchpad.net/beautifulsoup/)
* [Complete changelog](https://bazaar.launchpad.net/~leonardr/beautifulsoup/bs4/view/head:/CHANGELOG)
@@ -80,12 +80,9 @@ documentation.
# Running the unit tests
-Beautiful Soup supports unit test discovery from the project root directory:
+Beautiful Soup supports unit test discovery using Pytest:
```
-$ nosetests
+$ pytest
```
-```
-$ python3 -m unittest discover -s bs4
-```
diff --git a/setup.py b/setup.py
index 04ca112..caa87a8 100644
--- a/setup.py
+++ b/setup.py
@@ -14,8 +14,8 @@ setup(
version = __version__,
author="Leonard Richardson",
author_email='leonardr@segfault.org',
- url="http://www.crummy.com/software/BeautifulSoup/bs4/",
- download_url = "http://www.crummy.com/software/BeautifulSoup/bs4/download/",
+ url="https://www.crummy.com/software/BeautifulSoup/bs4/",
+ download_url = "https://www.crummy.com/software/BeautifulSoup/bs4/download/",
description="Screen-scraping library",
python_requires='>=3.6.0',
install_requires=[