Skip to content
This repository was archived by the owner on Mar 15, 2026. It is now read-only.

Commit 7a8dbe2

Browse files
committed
Fix python version
1 parent 22bbdbe commit 7a8dbe2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

aws_lambda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# flake8: noqa
22
__author__ = "Nick Ficano"
33
__email__ = "nficano@gmail.com"
4-
__version__ = "11.8.1"
4+
__version__ = "11.8.2"
55

66
from .aws_lambda import (
77
deploy,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-lambda"
3-
version = "11.8.1"
3+
version = "11.8.2"
44
description = "The bare minimum for a Python app running on Amazon Lambda."
55
authors = ["Nick Ficano <nficano@gmail.com>"]
66
license = "ISCL"
@@ -20,7 +20,7 @@ classifiers = [
2020
lambda = "scripts.lambda"
2121

2222
[tool.poetry.dependencies]
23-
python = "3.6"
23+
python = "^3.6"
2424
boto3 = "^1.4.4"
2525
click = "^7.1.2"
2626
docutils = "*"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 11.8.1
4+
current_version = 11.8.2
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
66
serialize =
77
{major}.{minor}.{patch}

0 commit comments

Comments
 (0)