Skip to content

Commit

Permalink
Merge pull request #60 from ikalnytskyi/maint/drop-cpython-3.7
Browse files Browse the repository at this point in the history
Drop Python 3.7 support
  • Loading branch information
ikalnytskyi authored Oct 5, 2023
2 parents 534f52f + c6e7bce commit 8a98b07
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.8"]

runs-on: ${{ matrix.os }}
steps:
Expand Down
7 changes: 7 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,13 @@ Release Notes
backward incompatible changes will be released along with bumping major
version component.

3.1.0
`````

(unreleased)

* Drop ``Python 3.7`` support. It reached its end-of-life recently.

3.0.0
`````

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "picobox"
description = "Dependency injection framework designed with Python in mind."
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Ihor Kalnytskyi", email = "[email protected]" },
Expand All @@ -17,7 +17,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion src/picobox/_scopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class contextvars(Scope):
in asynchronous applications to share dependencies between coroutines of
the same :class:`asyncio.Task`.
.. __: https://docs.python.org/3.7/library/contextvars.html#asyncio-support
.. __: https://docs.python.org/3/library/contextvars.html#asyncio-support
.. versionadded:: 2.1
"""
Expand Down

0 comments on commit 8a98b07

Please sign in to comment.