We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace4b04 commit 0d52e98Copy full SHA for 0d52e98
.github/workflows/scripts/build_placeholders.sh
@@ -11,11 +11,6 @@ for file_or_subdir in *; do
11
pyproject="${file_or_subdir}/pyproject.toml"
12
if [[ -f "${pyproject}" ]]; then
13
pypi_pkg_name=$(python -c "import tomllib, pathlib; contents = pathlib.Path('${pyproject}').read_text(); data = tomllib.loads(contents); print(data['project']['name'])")
14
- # Remove these clauses when they become unblocked.
15
- if [[ "${pypi_pkg_name}" = "datadog-cert-manager" ]]; then
16
- echo "Skipping ${pypi_pkg_name} until it gets unblocked on PyPI"
17
- continue
18
- fi
19
# multiline strings are sensitive to indentation, so we must unindent the following command
20
cat <<EOF > pkg_placeholder/pyproject.toml
21
[build-system]
0 commit comments