Skip to content

Commit

Permalink
build: Drop Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Nov 11, 2024
1 parent c8c848b commit 6549bd9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: pip
cache-dependency-path: setup.py
- run: pip install --upgrade pre-commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- run: pip install --upgrade setuptools wheel
- run: python setup.py sdist bdist_wheel
- name: Publish to TestPyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
11 changes: 10 additions & 1 deletion docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Release notes

.. changelog
Unreleased
----------

Removed
~~~~~~~

- Drop support for end-of-life Python version 3.8.

1.5.0 (2024-09-05)
------------------

Expand Down Expand Up @@ -43,7 +51,6 @@ Changed
~~~~~~~

- Every :ref:`poll_interval`, up to :ref:`max_proc` processes are started by the default :ref:`poller`, instead of only one process. (The number of running jobs will not exceed :ref:`max_proc`.)
- Drop support for end-of-life Python version 3.7.

Web UI
^^^^^^
Expand Down Expand Up @@ -152,6 +159,8 @@ Removed
- ``SCRAPYD_SLOT``
- ``SCRAPYD_SPIDER``

- Drop support for end-of-life Python version 3.7.

1.4.3 (2023-09-25)
------------------

Expand Down

0 comments on commit 6549bd9

Please sign in to comment.