Skip to content

Commit

Permalink
Remove gource
Browse files Browse the repository at this point in the history
  • Loading branch information
ppizarror committed Aug 11, 2024
1 parent 63cbb98 commit 41614cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
__pycache__/
._*
.idea/
.vscode/

# Build
build/
Expand Down
6 changes: 1 addition & 5 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import shutil
import sys

assert len(sys.argv) == 2, 'Argument is required, usage: build.py pip/twine/gource'
assert len(sys.argv) == 2, 'Argument is required, usage: build.py pip/twine'
mode = sys.argv[1].strip()

if mode == 'pip':
Expand All @@ -29,9 +29,5 @@
else:
raise FileNotFoundError('Not distribution been found, execute build.py pip')

elif mode == 'gource':
os.system('gource -s 0.25 --title PyMultiDictionary --disable-auto-rotate --key '
'--highlight-users --disable-bloom --multi-sampling -w --transparent --path ./')

else:
raise ValueError(f'Unknown mode {mode}')

0 comments on commit 41614cb

Please sign in to comment.