Skip to content

Commit f0749e0

Browse files
authored
feat: add support for Python 3.10 (#151)
1 parent 135f328 commit f0749e0

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.github/workflows/conformance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-18.04
66
strategy:
77
matrix:
8-
python-version: [3.8, 3.9]
8+
python-version: ['3.8', '3.9', '3.10']
99
steps:
1010
- name: Checkout code
1111
uses: actions/checkout@v2

.github/workflows/unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
python: [3.6, 3.7, 3.8, 3.9]
7+
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
88
platform: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.platform }}
1010
steps:

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.3.0] - 2021-10-08
10+
### Added
11+
- Support Python 3.10
12+
913
## [2.2.1] - 2021-06-01
1014
### Changed
1115
- Update GCF Python 3.7 backwards-compatible logging ([#131])

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"Programming Language :: Python :: 3.7",
4343
"Programming Language :: Python :: 3.8",
4444
"Programming Language :: Python :: 3.9",
45+
"Programming Language :: Python :: 3.10",
4546
],
4647
keywords="functions-framework",
4748
packages=find_packages(where="src"),

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{35,36,37,38,39}-{ubuntu-latest,macos-latest,windows-latest},lint
2+
envlist = py{35,36,37,38,39,310}-{ubuntu-latest,macos-latest,windows-latest},lint
33

44
[testenv]
55
usedevelop = true

0 commit comments

Comments
 (0)