Skip to content

Commit

Permalink
Drop Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Nov 20, 2023
1 parent a096c17 commit 5cb0d4c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
fail-fast: false
matrix:
include:
- {name: '3.7', python: '3.7', tox: py37-marshmallow3}
- {name: '3.11', python: '3.11', tox: py311-marshmallow3}
- {name: 'lowest', python: '3.7', tox: py37-lowest}
- {name: 'dev', python: '3.11', tox: py311-marshmallowdev}
- { name: "3.8", python: "3.8", tox: py38-marshmallow3 }
- { name: "3.11", python: "3.11", tox: py311-marshmallow3 }
- { name: "lowest", python: "3.8", tox: py38-lowest }
- { name: "dev", python: "3.11", tox: py311-marshmallowdev }
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: '3.11'
python-version: "3.11"
- run: python -m pip install --upgrade pip
- run: python -m pip install tox
- run: python -m tox -elint
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repos:
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py37-plus]
args: [--py38-plus]
- repo: https://github.com/psf/black
rev: 23.11.0
hooks:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
---------

0.30.0 (unreleased)
+++++++++++++++++++

Other changes:

* Drop support for Python 3.7, which is EOL.

0.29.0 (2023-02-27)
+++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Get it now
pip install -U marshmallow-sqlalchemy


Requires Python >= 3.7, marshmallow >= 3.0.0, and SQLAlchemy >= 1.4.40.
Requires Python >= 3.8, marshmallow >= 3.0.0, and SQLAlchemy >= 1.4.40.

Documentation
=============
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Get it now

pip install -U marshmallow-sqlalchemy

Requires Python >= 3.7, marshmallow >= 3.0.0, and SQLAlchemy >= 1.4.40.
Requires Python >= 3.8, marshmallow >= 3.0.0, and SQLAlchemy >= 1.4.40.

Learn
=====
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def read(fname):
package_dir={"": "src"},
package_data={"marshmallow_sqlalchemy": ["py.typed"]},
include_package_data=True,
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
license="MIT",
Expand All @@ -71,10 +71,10 @@ def read(fname):
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
test_suite="tests",
project_urls={
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist=
lint
py{37,38,39,310,311}-marshmallow3
py{38,39,310,311}-marshmallow3
py311-marshmallowdev
py37-lowest
docs
Expand Down

0 comments on commit 5cb0d4c

Please sign in to comment.