cloud-radar 0.12.1a27__tar.gz → 0.13.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/PKG-INFO +8 -4
  2. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/README.md +1 -1
  3. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/pyproject.toml +13 -7
  4. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/LICENSE.txt +0 -0
  5. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/__init__.py +0 -0
  6. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/__init__.py +0 -0
  7. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/e2e/__init__.py +0 -0
  8. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/e2e/_stack.py +0 -0
  9. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/__init__.py +0 -0
  10. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/_condition.py +0 -0
  11. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/_hooks.py +0 -0
  12. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/_output.py +0 -0
  13. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/_parameter.py +0 -0
  14. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/_resource.py +0 -0
  15. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/_stack.py +0 -0
  16. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/_template.py +0 -0
  17. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/functions.py +0 -0
  18. {cloud_radar-0.12.1a27 → cloud_radar-0.13.0}/src/cloud_radar/cf/unit/test__template.py +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cloud-radar
3
- Version: 0.12.1a27
3
+ Version: 0.13.0
4
4
  Summary: Run functional tests on cloudformation stacks.
5
5
  Home-page: https://github.com/DontShaveTheYak/cloud-radar
6
6
  License: Apache-2.0
7
7
  Keywords: aws,cloudformation,cloud-radar,testing,taskcat,cloud,radar
8
8
  Author: Levi Blaney
9
9
  Author-email: shadycuz@gmail.com
10
- Requires-Python: >=3.8.1,<4.0.0
10
+ Requires-Python: >=3.9,<3.14
11
11
  Classifier: Development Status :: 2 - Pre-Alpha
12
12
  Classifier: License :: OSI Approved :: Apache Software License
13
13
  Classifier: Operating System :: OS Independent
@@ -16,10 +16,14 @@ Classifier: Programming Language :: Python :: 3.9
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
20
23
  Classifier: Programming Language :: Python :: 3.9
21
24
  Classifier: Topic :: Software Development :: Libraries
22
25
  Classifier: Topic :: Software Development :: Testing
26
+ Requires-Dist: botocore (>=1.35.36) ; python_version >= "3.13"
23
27
  Requires-Dist: cfn-flip (>=1.3.0,<2.0.0)
24
28
  Requires-Dist: taskcat (>=0.9.41,<0.10.0)
25
29
  Project-URL: Repository, https://github.com/DontShaveTheYak/cloud-radar
@@ -347,7 +351,7 @@ See the [open issues](https://github.com/DontShaveTheYak/cloud-radar/issues) for
347
351
 
348
352
  Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
349
353
 
350
- This project uses poetry to manage dependencies and pre-commit to run formatting, linting and tests. You will need to have both installed to your system as well as python 3.9.
354
+ This project uses poetry to manage dependencies and pre-commit to run formatting, linting and tests. You will need to have both installed to your system as well as python 3.12.
351
355
 
352
356
  1. Fork the Project
353
357
  2. Setup environment (`poetry install`)
@@ -320,7 +320,7 @@ See the [open issues](https://github.com/DontShaveTheYak/cloud-radar/issues) for
320
320
 
321
321
  Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
322
322
 
323
- This project uses poetry to manage dependencies and pre-commit to run formatting, linting and tests. You will need to have both installed to your system as well as python 3.9.
323
+ This project uses poetry to manage dependencies and pre-commit to run formatting, linting and tests. You will need to have both installed to your system as well as python 3.12.
324
324
 
325
325
  1. Fork the Project
326
326
  2. Setup environment (`poetry install`)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "cloud-radar"
3
- version = "0.12.1a27"
3
+ version = "0.13.0"
4
4
  description = "Run functional tests on cloudformation stacks."
5
5
  readme = "README.md"
6
6
  authors = ["Levi Blaney <shadycuz@gmail.com>"]
@@ -12,31 +12,37 @@ classifiers = [
12
12
  "License :: OSI Approved :: Apache Software License",
13
13
  "Operating System :: OS Independent",
14
14
  "Programming Language :: Python :: 3",
15
- "Programming Language :: Python :: 3.8",
16
15
  "Programming Language :: Python :: 3.9",
16
+ "Programming Language :: Python :: 3.10",
17
+ "Programming Language :: Python :: 3.11",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
17
20
  "Topic :: Software Development :: Libraries",
18
21
  "Topic :: Software Development :: Testing"
19
22
  ]
20
23
 
21
24
  [tool.poetry.dependencies]
22
- python = "^3.8.1"
25
+ python = ">=3.9,<3.14"
23
26
  taskcat = "^0.9.41"
24
27
  cfn-flip = "^1.3.0"
28
+ botocore = {version = ">=1.35.36", python = ">=3.13"}
25
29
 
26
30
  [tool.poetry.group.dev.dependencies]
27
- pytest = "^7.0.0"
31
+ pytest = "^8.0.0"
28
32
  coverage = {extras = ["toml"], version = "^7.0.0"}
29
- pytest-cov = "^5.0.0"
33
+ pytest-cov = "^6.0.0"
30
34
  pytest-mock = "^3.6.1"
31
35
  isort = "^5.12.0"
32
- black = "^23.0.0"
36
+ black = "^24.0.0"
33
37
  flake8 = "^7.0.0"
34
38
  flake8-black = "^0.3.0"
35
39
  flake8-isort = "^6.1.0"
36
- flake8-bugbear = "^23.0.0"
40
+ flake8-bugbear = "^24.0.0"
37
41
  mypy = "^1.0.0"
38
42
  types-requests = "^2.28.11"
39
43
  types-PyYAML = "^6.0.12"
44
+ cfn-lint = "1.18.4"
45
+ setuptools = {version = "75.3.0", python = ">=3.12"}
40
46
 
41
47
  [tool.coverage.paths]
42
48
  source = ["src", "*/site-packages"]