Skip to content

Commit

Permalink
Update and remove unused/indirect dependencies (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thalhammer committed Jul 4, 2024
1 parent d1f6574 commit c55133c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 17 deletions.
5 changes: 1 addition & 4 deletions grabrepos.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,15 @@
# Author: David Graeff <david.graeff@web.de>

import yaml
import io
import os
import re
import fnmatch
import shutil
import difflib
from git import Repo,Git

def readyaml():
with open("multiversion.yml", 'r') as stream:
try:
content = yaml.load(stream)
content = yaml.load(stream, Loader=yaml.CLoader)
return content
except yaml.YAMLError as exc:
print(exc)
Expand Down
15 changes: 2 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,2 @@
Click==7.0
gitdb2==2.0.5
GitPython==3.1.30
Jinja2==2.11.3
livereload==2.5.2
Markdown==3.0.1
MarkupSafe==1.1.1
Pygments==2.7.4
pymdown-extensions==6.0
PyYAML==5.3.1
six==1.11.0
smmap2==2.0.5
tornado==5.1.1
GitPython==3.1.41
PyYAML==6.0.1

0 comments on commit c55133c

Please sign in to comment.