Skip to content
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

Troposphere library "AttributeError" fix and python3.9 runtime support #1030

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8869c63
Update core.py
ghostmaster-ai Aug 31, 2021
c52702c
Merge pull request #1 from ghostmaster-ai/ghostmaster-ai-patch-1
ghostmaster-ai Aug 31, 2021
d2e563c
Update __init__.py
ghostmaster-ai Aug 31, 2021
edf22ca
Bump sqlparse from 0.4.1 to 0.4.2
dependabot[bot] Sep 22, 2021
961701b
Merge pull request #2 from ghostmaster-ai/dependabot/pip/sqlparse-0.4.2
ghostmaster-ai Sep 22, 2021
f9351ec
Bump django from 3.1.7 to 3.1.13
dependabot[bot] Sep 22, 2021
cf38d8d
Bump urllib3 from 1.26.4 to 1.26.5
dependabot[bot] Sep 22, 2021
370bff3
Merge pull request #3 from ghostmaster-ai/dependabot/pip/django-3.1.13
ghostmaster-ai Sep 22, 2021
86556c7
Merge pull request #4 from ghostmaster-ai/dependabot/pip/urllib3-1.26.5
ghostmaster-ai Sep 22, 2021
886c78e
Create codeql-analysis.yml
ghostmaster-ai Sep 22, 2021
e659c83
Change to Zappa2
ghostmaster-ai Sep 22, 2021
68791a3
Troposphere "Attribute Error" fix
ghostmaster-ai Sep 22, 2021
7f4f1b8
Create FUNDING.yml
ghostmaster-ai Sep 22, 2021
f7db071
.
ghostmaster-ai Sep 22, 2021
9926a6f
.
ghostmaster-ai Sep 22, 2021
20518b0
Update FUNDING.yml
ghostmaster-ai Sep 22, 2021
6e144ed
Update FUNDING.yml
ghostmaster-ai Sep 23, 2021
07fbacb
Update README.md
ghostmaster-ai Sep 23, 2021
bd67bec
Update README.md
ghostmaster-ai Sep 23, 2021
52c75e6
Update README.md
ghostmaster-ai Sep 23, 2021
9a10108
Update README.md
ghostmaster-ai Sep 23, 2021
c7138ba
fix zappa#1039 prohibit public access to created lambda functions by…
bruceduhamel Sep 23, 2021
d5314b8
Merge pull request #5 from bruceduhamel/master
ghostmaster-ai Sep 23, 2021
f82f331
0.53.2
ghostmaster-ai Sep 23, 2021
88f9707
Fixed - pkg_resources.DistributionNotFound
ghostmaster-ai Sep 24, 2021
44a6108
.
ghostmaster-ai Sep 24, 2021
06f547b
fixed bug with zappa manage commands
ghostmaster-ai Sep 25, 2021
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: 1 addition & 1 deletion zappa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

SUPPORTED_VERSIONS = [(3, 6), (3, 7), (3, 8)]
SUPPORTED_VERSIONS = [(3, 6), (3, 7), (3, 8), (3, 9)]

if sys.version_info[:2] not in SUPPORTED_VERSIONS:
formatted_supported_versions = [
Expand Down
2 changes: 1 addition & 1 deletion zappa/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2414,7 +2414,7 @@ def create_stack_template(

# build a fresh template
self.cf_template = troposphere.Template()
self.cf_template.add_description("Automatically generated with Zappa")
self.cf_template.set_description("Automatically generated with Zappa")
self.cf_api_resources = []
self.cf_parameters = {}

Expand Down