-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin versions of all modules, especially around docs generation.
Signed-off-by: Rich Scott <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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
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 |
---|---|---|
|
@@ -9,18 +9,18 @@ requires-python = ">=3.7" | |
# extremely difficult. | ||
dependencies = [ | ||
"armada-client", | ||
"apache-airflow>=2.6.3", | ||
"grpcio>=1.46.3", | ||
"grpcio-tools>=1.46.3", | ||
"types-protobuf>=3.19.22" | ||
"apache-airflow==2.7.1", | ||
"grpcio==1.58.0", | ||
"grpcio-tools==1.58.0", | ||
"types-protobuf==4.24.0.1" | ||
] | ||
authors = [{name = "Armada-GROSS", email = "[email protected]"}] | ||
license = { text = "Apache Software License" } | ||
readme = "README.md" | ||
|
||
[project.optional-dependencies] | ||
format = ["black==23.7.0", "flake8==6.1.0", "pylint==2.17.5"] | ||
test = ["pytest==7.3.1", "coverage>=6.5.0", "pytest-asyncio==0.21.1"] | ||
test = ["pytest==7.3.1", "coverage==7.3.1", "pytest-asyncio==0.21.1"] | ||
# note(JayF): sphinx-jekyll-builder was broken by sphinx-markdown-builder 0.6 -- so pin to 0.5.5 | ||
docs = ["sphinx==7.1.2", "sphinx-jekyll-builder==0.3.0", "sphinx-toolbox==3.2.0b1", "sphinx-markdown-builder==0.5.5"] | ||
|
||
|