Skip to content

Commit

Permalink
Update Dependabot for python virtual envs
Browse files Browse the repository at this point in the history
* Simplify virtualenv installation to use multiple requirements files in
  a single directory. This eliminates the packages.txt file and provides
  an easier path to adding new tools in the future. It also allows us to
  simplify the dependenabot configuration as all requirements files are
  in a single directory.
* Update dependabot.yml to point to the new Python dependencies folder.
  • Loading branch information
jalaziz authored and lindluni committed Jan 11, 2022
1 parent fc6c5b3 commit 7e16834
Show file tree
Hide file tree
Showing 16 changed files with 5 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ updates:

# Maintain dependencies for python with pip
- package-ecosystem: "pip"
directory: "/dependencies"
directory: "/dependencies/python/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
File renamed without changes.
File renamed without changes.
11 changes: 4 additions & 7 deletions dependencies/python/build-venvs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,12 @@ pip install virtualenv
#########################################################
# Itterate through requirments.txt to install bainaries #
#########################################################
while read -r LINE; do
for DEP_FILE in *.txt; do
# split the package name from its version
PACKAGE_NAME=$(cut -d'=' -f1 <<<"${LINE}")
if [[ "${PACKAGE_NAME}" == *"["* ]]; then
PACKAGE_NAME=$(cut -d'[' -f1 <<<"${PACKAGE_NAME}")
fi
PACKAGE_NAME=${DEP_FILE%.txt}
echo "-------------------------------------------"
mkdir -p "/venvs/${PACKAGE_NAME}"
cp "${PACKAGE_NAME}/requirements.txt" "/venvs/${PACKAGE_NAME}/requirements.txt"
cp "${DEP_FILE}" "/venvs/${PACKAGE_NAME}/requirements.txt"
echo "Generating virtualenv for: [${PACKAGE_NAME}]"
pushd "/venvs/${PACKAGE_NAME}"
virtualenv .
Expand All @@ -40,4 +37,4 @@ while read -r LINE; do
deactivate
# pop the stack
popd
done <packages.txt
done
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 0 additions & 13 deletions dependencies/python/packages.txt

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7e16834

Please sign in to comment.