Skip to content

Commit

Permalink
Maintenance: remove support for Python3.8 that is reaching end-of-life
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Oct 2, 2024
1 parent 9c5f8c6 commit 9f8d996
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
# set toxenv to workaround-darwin on macos (check tox.ini)
- toxenv: py
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ If you want a scraper for a new site added
For Devs / Contribute
---------------------

Assuming you have ``>=python3.8`` installed, navigate to the directory where you want this project to live in and drop these lines
Assuming you have ``>=python3.9`` installed, navigate to the directory where you want this project to live in and drop these lines

.. code:: shell
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -26,7 +25,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dynamic = ["version", "readme"]
requires-python = ">= 3.8"
requires-python = ">= 3.9"
dependencies = [
"beautifulsoup4 >= 4.12.3",
"extruct >= 0.17.0",
Expand Down

0 comments on commit 9f8d996

Please sign in to comment.