Skip to content

Commit

Permalink
Merge pull request #53 from hartwork/drop-support-for-python-3-7
Browse files Browse the repository at this point in the history
Drop support for Python 3.7 (end of life 27 Jun 2023)
  • Loading branch information
hartwork authored Jul 2, 2023
2 parents b5b1aa2 + 2962d04 commit 2a145b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
strategy:
matrix:
python-version: [3.7, 3.11] # oldest and most recent version supported
python-version: [3.8, 3.11] # oldest and most recent version supported
runs-on: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.runs-on }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build:
image: latest

python:
version: 3.7
version: 3.8
pip_install: true

formats:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
long_description_content_type="text/markdown",
url="https://github.com/clarketm/wait-for-it",
packages=setuptools.find_packages(),
python_requires=">=3.7",
python_requires=">=3.8",
setup_requires=["setuptools>=38.6.0"], # for long_description_content_type
py_modules=["wait_for_it"],
install_requires=["click"],
Expand All @@ -24,7 +24,6 @@
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 2a145b0

Please sign in to comment.