Skip to content

Commit

Permalink
pre-push
Browse files Browse the repository at this point in the history
  • Loading branch information
BennyThink committed Dec 1, 2024
1 parent ef0beca commit 52c4f86
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pre-push.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env python3
# coding: utf-8

# ytdlbot - pre-commit.py
# for dependabot

import tomllib
import subprocess


with open("pyproject.toml", "rb") as file:
config = tomllib.load(file)

with open("requirements.txt", "w") as file:
for item in config["project"]["dependencies"]:
if " " in item:
item = item.split()[-1]
file.write(f"{item}\n")

# commit with amend
subprocess.run(["git", "add", "requirements.txt"])
subprocess.run(["git", "commit", "--amend", "--no-edit"])

0 comments on commit 52c4f86

Please sign in to comment.