diff options
| author | 2019-01-16 23:18:57 +1000 | |
|---|---|---|
| committer | 2019-01-16 23:18:57 +1000 | |
| commit | 38c13951e883a9ce8141c2d0942104672c8e65e4 (patch) | |
| tree | d016ad628c2d7fcf0a774c518c723c8a75e2dec7 /Pipfile | |
| parent | Tidy, correct order of actions and notifications. (diff) | |
| parent | Merge pull request #256 from python-discord/fix-bb-emoji (diff) | |
Merge branch 'master' of https://github.com/python-discord/bot into reorder-mod-actions
# Conflicts:
# bot/cogs/modlog.py
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -4,7 +4,7 @@ verify_ssl = true name = "pypi" [packages] -discord-py = {git = "https://github.com/Rapptz/discord.py.git", extras = ["voice"], ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb", editable = true} +discord-py = {git = "https://github.com/Rapptz/discord.py.git",extras = ["voice"],ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb",editable = true} dulwich = "*" aiodns = "*" logmatic-python = "*" @@ -29,6 +29,7 @@ requests = "*" "flake8-string-format" = "*" safety = "*" dodgy = "*" +pre-commit = "*" [requires] python_version = "3.6" @@ -36,12 +37,10 @@ python_version = "3.6" [scripts] start = "python -m bot" lint = "python -m flake8" - +precommit = "pre-commit install" build = "docker build -t pythondiscord/bot:latest -f docker/bot.Dockerfile ." push = "docker push pythondiscord/bot:latest" - buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/base.Dockerfile ." pushbase = "docker push pythondiscord/bot-base:latest" - buildci = "docker build -t pythondiscord/bot-ci:latest -f docker/ci.Dockerfile ." pushci = "docker push pythondiscord/bot-ci:latest" |