Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/update_discord_py'
Browse files Browse the repository at this point in the history
  • Loading branch information
Cobular committed May 8, 2021
2 parents d90dd14 + 8c8e0c5 commit d671f01
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install pypa/build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install dependencies
Expand All @@ -39,7 +39,7 @@ jobs:
clean: false
fetch-depth: 20
- name: Set up Python
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/run_tests_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
discordpy-version: [ 1.5.0, 1.6.0 ]
discordpy-version: [ 1.5.0, 1.7.0 ]
max-parallel: 1

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v2.2.2
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip dependancies for python version
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pyv${{ matrix.python-version }}-dv${{ matrix.discordpy-version }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
clean: false
fetch-depth: 20
- name: Set up Python
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install dependencies
Expand All @@ -74,7 +74,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install pypa/build
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
discord.py~=1.6.0
Sphinx~=3.5.3
discord.py~=1.7.2
Sphinx~=3.5.4
black==20.8b1
furo==2021.3.20b30
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
author_email="python@jakecover.me",
license="MIT",
packages=["distest", "distest.TestInterface"],
install_requires=["discord.py>=1.5.0,<1.7.0"],
install_requires=["discord.py>=1.5.0,<1.8.0"],
zip_safe=False,
classifiers=[
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit d671f01

Please sign in to comment.