-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and remove unused/indirect dependencies (#24)
- Loading branch information
1 parent
d1f6574
commit c55133c
Showing
2 changed files
with
3 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,18 +12,15 @@ | |
# Author: David Graeff <[email protected]> | ||
|
||
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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |