Skip to content

Commit

Permalink
Merge pull request #39 from hhollenstain/7.0.0
Browse files Browse the repository at this point in the history
7.0.0 - updating some api changes...
  • Loading branch information
hhollenstain authored Nov 6, 2020
2 parents ff38954 + 63b6fc6 commit ffa5f77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: init check dist publish

init:
pipenv install git+https://github.com/Rapptz/discord.py@master#egg=discord.py
# pipenv install git+https://github.com/Rapptz/discord.py@master#egg=discord.py
pipenv install -e "."
pipenv run python setup.py develop

Expand All @@ -18,5 +18,5 @@ dist: init check req
pipenv run python setup.py sdist bdist_wheel install

live:
pip install -U git+https://github.com/Rapptz/discord.py@master#egg=discord.py
# pip install -U git+https://github.com/Rapptz/discord.py@master#egg=discord.py
pip install -e "."
2 changes: 1 addition & 1 deletion autochannel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
init - version info
"""
VERSION_INFO = (6, 0, 6)
VERSION_INFO = (7, 0, 0)
VERSION = '.'.join(str(c) for c in VERSION_INFO)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'aiomeasures',
'coloredlogs',
'dblpy',
# 'discord.py==1.3.4',
'discord.py==1.4.2',
'dblpy',
'flask_sqlalchemy',
'pip==18.0',
Expand Down

0 comments on commit ffa5f77

Please sign in to comment.