-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa67f96
commit b22c13b
Showing
4 changed files
with
1,310 additions
and
1,069 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "4dn-cloud-infra" | ||
version = "4.1.1" | ||
version = "4.1.2" | ||
description = "Repository for generating Cloudformation Templates to orchestrate the CGAP Ecosystem" | ||
authors = ["4DN-DCIC Team <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -12,9 +12,9 @@ packages = [ | |
# Chalice is problematic with Python 3.11 (cffi package won't install and required at run-time). | ||
python = ">=3.8,<3.11" | ||
awacs = "^2.0.0" | ||
awscli = "^1.29.62" | ||
boto3 = "^1.28.62" | ||
botocore = "^1.31.62" | ||
awscli = "^1.32.74" | ||
boto3 = "^1.34.74" | ||
botocore = "^1.34.74" | ||
chalice = "^1.29.0" | ||
cffi = "^1.15.1" | ||
dcicutils = "^8.0.0" | ||
|
@@ -29,37 +29,33 @@ prettytable = "3.3.0" | |
tibanna = "^5.1.0" | ||
tibanna-ff = "^3.1.1" | ||
tqdm = ">=4.62.3" | ||
troposphere = "^3.2.2" | ||
troposphere = "^4.7.0" | ||
|
||
# Foursight ... | ||
|
||
foursight-core = "^5.1.0" | ||
#foursight-core = "5.1.0.1b1" | ||
|
||
# Define poetry "groups" for foursight-cgap and foursight, named foursight_cgap and | ||
# foursight_fourfront, respectively. This is so we can conditionally include either but | ||
# not both in the Chalice package (via foursight_core/deploy.py). dmichaels/2022-11-01. | ||
|
||
[tool.poetry.group.foursight_smaht.dependencies] | ||
foursight-smaht = "^0.3.0" | ||
#foursight-smaht = "0.3.0.1b1" | ||
foursight-smaht = "^0.8.1" | ||
|
||
[tool.poetry.group.foursight_cgap.dependencies] | ||
foursight-cgap = "^4.1.0" | ||
#foursight-cgap = "4.1.0.1b2" | ||
|
||
[tool.poetry.group.foursight_fourfront.dependencies] | ||
foursight = "^4.1.0" | ||
#foursight = "4.1.0.1b1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
jupyter = "1.0.0" | ||
#numpy = "1.21.6" # added to allow to lock, last viable version for 3.7 - Will July 21 2022 | ||
#pandas = "1.3.5" # added to allow to lock, last viable version for 3.7 - Will July 21 2022 | ||
cfn-flip = "1.2.3" # do we need to specify this explicitly? -kmp 27-Jul-2021 | ||
cfn-lint = "0.48.3" # a secondary check that catches more things than standard validate - Will 4/1/2021 | ||
boto3-stubs = "^1.28.62" | ||
botocore-stubs = "^1.31.62" | ||
boto3-stubs = "^1.34.69" | ||
botocore-stubs = "^1.34.69" | ||
# Linting generally | ||
flake8 = ">=3.9.2" | ||
mock = "^4.0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters