diff options
| author | 2022-04-02 20:11:34 +0100 | |
|---|---|---|
| committer | 2022-04-02 20:11:34 +0100 | |
| commit | 765284a5e436f7786619a5ba4c312d75df5e9dee (patch) | |
| tree | f4748800698892fc9940c217b5507011ec614d27 /.github | |
| parent | Merge pull request #39 from python-discord/revert-disnake (diff) | |
| parent | Use imperative mood in docstrings (diff) | |
Merge pull request #42 from python-discord/bump-d.py-and-add-BotBase
Bump d.py and add bot base
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/docs.yaml | 3 | ||||
| -rw-r--r-- | .github/workflows/lint.yaml | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index a01ea58f..ad10f75f 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -21,10 +21,11 @@ jobs: - uses: actions/checkout@v2 - name: Install Python Dependencies - uses: HassanAbouelela/actions/setup-python@setup-python_v1.0.0 + uses: HassanAbouelela/actions/setup-python@setup-python_v1.1.0 with: dev: true python_version: 3.9 + install_args: "--extras async-rediscache" # Undeclared dependency for `releases`... whoops # https://github.com/bitprophet/releases/pull/82 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index dfad8cf8..cbe692f3 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,11 +17,12 @@ jobs: steps: - name: Install Python Dependencies - uses: HassanAbouelela/actions/setup-python@setup-python_v1.0.0 + uses: HassanAbouelela/actions/setup-python@setup-python_v1.1.0 with: # Set dev=true to run pre-commit which is a dev dependency dev: true python_version: 3.9 + install_args: "--extras async-rediscache" # We will not run `flake8` here, as we will use a separate flake8 # action. As pre-commit does not support user installs, we set |