Skip to content

Commit

Permalink
Add imported dependencies (#45)
Browse files Browse the repository at this point in the history
* Add imported deps

add dependencies which we import from and are not in python stdlib:

    boto3
    botocore
    distro
    insights-analytics-collector
    openpyxl
    pandas
    requests
    setuptools

* sync dep versions with awx/requirements/requirements.txt

except for pytest, ruff & pre-commit, everything is an existing awx dependency,
so start from a known good point of using exactly the same versions

* python >= 3.11 to match awx
  • Loading branch information
himdel authored Jan 27, 2025
1 parent 8cb270d commit d70534f
Show file tree
Hide file tree
Showing 2 changed files with 323 additions and 13 deletions.
18 changes: 13 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@ name = "metrics-utility"
version = "0.1.0"
description = "A metrics utility for Ansible"
dependencies = [
"ruff",
"pytest",
"Django>=4.0,<5.0",
"pre-commit",
"boto3==1.35.96",
"botocore==1.35.96",
"distro==1.9.0",
"django==4.2.16",
"insights-analytics-collector==0.3.2",
"openpyxl==3.1.2",
"pandas==2.2.1",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"requests==2.32.3",
"ruff>=0.9.2",
"setuptools==70.3.0",
]
requires-python = ">=3.12"
requires-python = ">=3.11"

# Do not uncomment the line below. We need to be able to override the version via a file, and this
# causes the "version" key in setup.cfg to be ignored.
Expand Down
Loading

0 comments on commit d70534f

Please sign in to comment.