Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions py3-crcmod.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: py3-crcmod
version: "1.7"
version: '1.7'
epoch: 2
description: Cyclic Redundancy Check (CRC) implementation in Python
copyright:
- license: 'MIT'
- license: MIT
dependencies:
runtime:
- python-3
Expand Down Expand Up @@ -42,3 +42,22 @@ update:
enabled: true
release-monitor:
identifier: 12017

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="crcmod"
IMPORT_STATEMENT="import crcmod"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
19 changes: 19 additions & 0 deletions py3-cryptography.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,22 @@ update:
github:
identifier: pyca/cryptography
use-tag: true

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="cryptography"
IMPORT_STATEMENT="import cryptography"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
19 changes: 19 additions & 0 deletions py3-cycler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,22 @@ update:
github:
identifier: matplotlib/cycler
strip-prefix: v

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="cycler"
IMPORT_STATEMENT="from cycler import cycler"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
19 changes: 19 additions & 0 deletions py3-datadog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,22 @@ update:
enabled: true
release-monitor:
identifier: 35391

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="datadog"
IMPORT_STATEMENT="from datadog import initialize"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
19 changes: 19 additions & 0 deletions py3-debugpy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,22 @@ update:
github:
identifier: microsoft/debugpy
strip-prefix: v

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="debugpy"
IMPORT_STATEMENT="import debugpy"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
21 changes: 20 additions & 1 deletion py3-defusedxml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package:
name: py3-defusedxml
version: 0.7.1
epoch: 1
description: "XML bomb protection for Python stdlib modules"
description: XML bomb protection for Python stdlib modules
copyright:
- license: PSF-2.0
dependencies:
Expand Down Expand Up @@ -44,3 +44,22 @@ update:
github:
identifier: tiran/defusedxml
strip-prefix: v

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="defusedxml"
IMPORT_STATEMENT="import defusedxml"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
19 changes: 19 additions & 0 deletions py3-deprecated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,22 @@ update:
github:
identifier: tantale/deprecated
strip-prefix: v

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="deprecated"
IMPORT_STATEMENT="import deprecated"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
19 changes: 19 additions & 0 deletions py3-deprecation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,22 @@ update:
manual: false
github:
identifier: briancurtin/deprecation

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="deprecation"
IMPORT_STATEMENT="import deprecation"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi
19 changes: 19 additions & 0 deletions py3-dill.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,22 @@ update:
- dill-
github:
identifier: uqfoundation/dill

test:
environment:
contents:
packages:
- busybox
pipeline:
- runs: |
LIBRARY="dill"
IMPORT_STATEMENT="import dill"

if ! python -c "$IMPORT_STATEMENT"; then
echo "Failed to import library '$LIBRARY'."
python -c "$IMPORT_STATEMENT" 2>&1
exit 1
else
echo "Library '$LIBRARY' is installed and can be imported successfully."
exit 0
fi