8000 fix: drop support for Python 3.7 by taeold · Pull Request #372 · GoogleCloudPlatform/functions-framework-python · GitHub
[go: up one dir, main page]

Skip to content

fix: drop support for Python 3.7 #372

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
include:
- platform: ubuntu-22.04
python: '3.8'
- platform: ubuntu-22.04
python: '3.7'
runs-on: ${{ matrix.platform }}
steps:
- name: Harden Runner
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
platform: [ubuntu-latest, macos-latest, windows-latest]
# Python <= 3.9 is not available on macos-latest
# Workaround for https://github.com/actions/setup-python/issues/696
Expand All @@ -21,23 +21,15 @@ jobs:
python: '3.9'
- platform: macos-latest
python: '3.8'
- platform: macos-latest
python: '3.7'
- platform: ubuntu-latest
python: '3.8'
- platform: ubuntu-latest
python: '3.7'
include:
- platform: macos-latest
python: '3.9'
- platform: macos-13
python: '3.8'
- platform: macos-13
python: '3.7'
- platform: ubuntu-22.04
python: '3.8'
- platform: ubuntu-22.04
python: '3.7'
runs-on: ${{ matrix.platform }}
steps:
- name: Harden Runner
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "functions-framework"
version = "3.8.3"
description = "An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team."
readme = "README.md"
requires-python = ">=3.5, <4"
requires-python = ">=3.8, <4"
# Once we drop support for Python 3.7 and 3.8, this can become
# license = "Apache-2.0"
license = {text = "Apache-2.0"}
Expand All @@ -17,7 +17,6 @@ keywords = ["functions-framework"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
3 changes: 0 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ envlist =
py38-ubuntu-22.04
py38-macos-13
py38-windows-latest
py37-ubuntu-22.04
py37-macos-13
py37-windows-latest

[testenv]
usedevelop = true
Expand Down
0