Skip to content

Commit

Permalink
Removes underlying issue with #14 due to RPi having import issues (st…
Browse files Browse the repository at this point in the history
…arts by removing unused imports).
  • Loading branch information
mattdonders committed Oct 28, 2019
1 parent 9812110 commit 332567a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ env/
.coverage
config.yaml

# V1 Files (Ignoring After V2)
hockey_twitter_bot.py
nhl_game_events.py


#############################################
# Github Python Default .gitignore
Expand Down
12 changes: 6 additions & 6 deletions hockeygamebot/core/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
import os
from enum import Enum

import numpy as np
import pandas as pd
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
from PIL import Image, ImageColor, ImageDraw, ImageFont, ImageOps
# import numpy as np
# import pandas as pd
# import matplotlib
# matplotlib.use('TkAgg')
# import matplotlib.pyplot as plt
from PIL import Image, ImageDraw, ImageFont

from hockeygamebot.definitions import IMAGES_PATH, PROJECT_ROOT
from hockeygamebot.helpers import utils
Expand Down
9 changes: 3 additions & 6 deletions hockeygamebot/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
tweepy==3.7.0
matplotlib==3.0.0
fake_useragent==0.1.11
requests==2.22.0
pytz==2018.3
pandas==0.22.0
numpy==1.15.4
Pillow==6.2.0
beautifulsoup4==4.8.0
Pillow==6.2.1
beautifulsoup4==4.8.1
python_dateutil==2.8.0
PyYAML==5.1.2
PyYAML==5.1.2

0 comments on commit 332567a

Please sign in to comment.