Skip to content

Commit

Permalink
chore: add workflow to find the python dependencies in repo
Browse files Browse the repository at this point in the history
  • Loading branch information
salman2013 committed Mar 28, 2024
1 parent 3bd672f commit 438a119
Showing 1 changed file with 1 addition and 47 deletions.
48 changes: 1 addition & 47 deletions .github/workflows/check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,50 +32,4 @@ jobs:
- name: List Installed Packages
run: |
source .venv/bin/activate # Activate the virtual environment
pip list --format=columns # List installed packages in columns format
- name: Find Source Repos for Dependencies
id: find_source_repos
run: |
source .venv/bin/activate # Activate the virtual environment
python - << EOF
import subprocess
import re
# Define the first-party and second-party organizations
FIRST_PARTY_ORGS = ["openedx"]
SECOND_PARTY_ORGS = [
"edx", "edx-unsupported", "edx-solutions",
"mitodl",
"overhangio",
"open-craft", "eduNEXT", "raccoongang",
]
# Get the output of 'pip list' command
pip_list_output = subprocess.run(['pip', 'list'], capture_output=True, text=True).stdout
# Find source repositories for each installed package
first_party_repos = []
second_party_repos = []
for line in pip_list_output.split('\n'):
match = re.match(r'([\w-]+) \(([\d.]+)\)', line)
if match:
package_name = match.group(1)
# Assume the source repository URL can be extracted from the package name (modify this as per your project's conventions)
# Here, we just append 'https://github.com/{package_name}' for demonstration purposes
repo_url = f'https://github.com/{package_name}'
if any(org in repo_url for org in FIRST_PARTY_ORGS):
first_party_repos.append(repo_url)
elif any(org in repo_url for org in SECOND_PARTY_ORGS):
second_party_repos.append(repo_url)
print("::set-output name=first_party_repos::{}".format(','.join(first_party_repos)))
print("::set-output name=second_party_repos::{}".format(','.join(second_party_repos)))
EOF
- name: Display Source Repos
run: |
echo "First Party Repositories:"
echo "${{ steps.find_source_repos.outputs.first_party_repos }}"
echo "Second Party Repositories:"
echo "${{ steps.find_source_repos.outputs.second_party_repos }}"
pip list --format=columns --verbose # List installed packages with verbose output

0 comments on commit 438a119

Please sign in to comment.