From 63b6fc662f65bbfea96c1d900234901d06751f88 Mon Sep 17 00:00:00 2001 From: Henry Hollenstain Date: Thu, 5 Nov 2020 16:20:21 -0800 Subject: [PATCH] 7.0.0 - updating some api changes... --- Makefile | 4 ++-- autochannel/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 86b4595..5401ca3 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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 "." diff --git a/autochannel/__init__.py b/autochannel/__init__.py index 0d2b7dc..301ad0b 100644 --- a/autochannel/__init__.py +++ b/autochannel/__init__.py @@ -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) diff --git a/setup.py b/setup.py index 85ea75b..d17d74e 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ 'aiomeasures', 'coloredlogs', 'dblpy', - # 'discord.py==1.3.4', + 'discord.py==1.4.2', 'dblpy', 'flask_sqlalchemy', 'pip==18.0',