aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
* | | Merge pull request #94 from python-discord/dependabot/pip/requests-2.20.0Gravatar Hassan Abouelela2022-06-28-9/+56
|\ \ \ | | | | | | | | Bump requests from 2.15.1 to 2.20.0
| * | | Bump requests from 2.15.1 to 2.20.0Gravatar dependabot[bot]2022-06-28-9/+56
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [requests](https://github.com/psf/requests) from 2.15.1 to 2.20.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.15.1...v2.20.0) --- updated-dependencies: - dependency-name: requests dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
* | | Merge pull request #93 from python-discord/bump-d.pyv7.2.0Gravatar ChrisJL2022-06-28-78/+49
|\ \ \
| * | | Bump d.py to 0eb3d26Gravatar Chris Lovering2022-06-28-78/+49
|/ / / | | | | | | | | | Adds support for auto mod, of which the new auto_mod MESSAGE_TYPE is needed for our filter system.
* | | Merge pull request #92 from python-discord/dependabot/pip/sphinx-5.0.2Gravatar ChrisJL2022-06-28-8/+8
|\ \ \ | | | | | | | | Bump sphinx from 4.5.0 to 5.0.2
| * | | Bump sphinx from 4.5.0 to 5.0.2Gravatar dependabot[bot]2022-06-27-8/+8
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 4.5.0 to 5.0.2. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/5.x/CHANGES) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v4.5.0...v5.0.2) --- updated-dependencies: - dependency-name: sphinx dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
* | | Merge pull request #89 from python-discord/dependabot/pip/furo-2022.6.21Gravatar ChrisJL2022-06-27-8/+27
|\ \ \ | | | | | | | | Bump furo from 2022.4.7 to 2022.6.21
| * | | Bump furo from 2022.4.7 to 2022.6.21Gravatar dependabot[bot]2022-06-27-8/+27
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [furo](https://github.com/pradyunsg/furo) from 2022.4.7 to 2022.6.21. - [Release notes](https://github.com/pradyunsg/furo/releases) - [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md) - [Commits](https://github.com/pradyunsg/furo/compare/2022.04.07...2022.06.21) --- updated-dependencies: - dependency-name: furo dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
* | | Merge pull request #90 from python-discord/dependabot/pip/flake8-bugbear-22.6.22Gravatar ChrisJL2022-06-27-5/+5
|\ \ \ | | | | | | | | Bump flake8-bugbear from 22.4.25 to 22.6.22
| * | | Bump flake8-bugbear from 22.4.25 to 22.6.22Gravatar dependabot[bot]2022-06-27-5/+5
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.4.25 to 22.6.22. - [Release notes](https://github.com/PyCQA/flake8-bugbear/releases) - [Commits](https://github.com/PyCQA/flake8-bugbear/compare/22.4.25...22.6.22) --- updated-dependencies: - dependency-name: flake8-bugbear dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
* | | Merge pull request #81 from python-discord/dependabot/pip/pep8-naming-0.13.0Gravatar ChrisJL2022-06-27-21/+5
|\ \ \
| * | | Bump pep8-naming from 0.12.1 to 0.13.0Gravatar dependabot[bot]2022-06-26-21/+5
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [pep8-naming](https://github.com/PyCQA/pep8-naming) from 0.12.1 to 0.13.0. - [Release notes](https://github.com/PyCQA/pep8-naming/releases) - [Changelog](https://github.com/PyCQA/pep8-naming/blob/main/CHANGELOG.rst) - [Commits](https://github.com/PyCQA/pep8-naming/compare/0.12.1...0.13.0) --- updated-dependencies: - dependency-name: pep8-naming dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
| * | Switch `typing.Hashable` With `Collections.abc.Hashable`Gravatar Hassan Abouelela2022-06-29-9/+9
| | | | | | | | | | | | | | | | | | | | | Switches out the Hashable type from the typing library for the generic from collections. Signed-off-by: Hassan Abouelela <[email protected]>
| * | Replace Typing GenericsGravatar Hassan Abouelela2022-06-26-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | Replaces all typing generics with collection equivalents as per PEP 585. `typing.Callable` was not included in this due to a sphinx-autodoc bug not handling it well. Signed-off-by: Hassan Abouelela <[email protected]>
| * | Document Create Task Return TypeGravatar Hassan Abouelela2022-06-26-2/+5
| | | | | | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * | Changelog Miscellaneous Bug FixesGravatar Hassan Abouelela2022-06-26-0/+6
| | | | | | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * | Declare Static MethodGravatar Hassan Abouelela2022-06-26-1/+2
| | | | | | | | | | | | | | | | | | | | | The `maybe_raise_for_status` function is declared as a class function, but does not need to be so. Signed-off-by: Hassan Abouelela <[email protected]>
| * | Fix Incorrect Typehints & DocstringsGravatar Hassan Abouelela2022-06-26-2/+2
| | | | | | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * | Fix Docstring For Role Change Wrapper UtilGravatar Hassan Abouelela2022-06-26-4/+4
| | | | | | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * | Add Typehints To Typing PatcherGravatar Hassan Abouelela2022-06-26-2/+3
| | | | | | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * | Clean Up Startup Ping FunctionGravatar Hassan Abouelela2022-06-26-2/+2
|/ / | | | | | | | | | | | | | | The function was missing the self arg, which would lead to an exception at startup for any projects that don't override it. It's also not being awaited despite being an async function. Signed-off-by: Hassan Abouelela <[email protected]>
* | Merge pull request #86 from ↵Gravatar Hassan Abouelela2022-06-26-53/+54
|\ \ | | | | | | | | | | | | python-discord/dependabot/pip/sphinx-autodoc-typehints-1.18.3 Bump sphinx-autodoc-typehints from 1.18.1 to 1.18.3
| * | Bump sphinx-autodoc-typehints from 1.18.1 to 1.18.3Gravatar dependabot[bot]2022-06-10-53/+54
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) from 1.18.1 to 1.18.3. - [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases) - [Changelog](https://github.com/tox-dev/sphinx-autodoc-typehints/blob/main/CHANGELOG.md) - [Commits](https://github.com/tox-dev/sphinx-autodoc-typehints/compare/1.18.1...1.18.3) --- updated-dependencies: - dependency-name: sphinx-autodoc-typehints dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
| * ensure tuples from pos arg and kwarg tuples are differentiatedGravatar Numerlor2022-06-21-14/+20
| |
| * stop cleanup task when manager is destroyedGravatar Numerlor2022-06-21-3/+10
| |
| * generalize handling of fully hashable args, and args with non-hashable partsGravatar Numerlor2022-06-21-34/+57
| |
| * Fix typehintGravatar Numerlor2022-06-21-3/+3
| |
| * Add comment for skipped argumentsGravatar Numerlor2022-06-21-1/+1
| |
| * reword docstringsGravatar Numerlor2022-06-21-14/+11
| | | | | | | | Co-authored-by: MarkKoz <[email protected]>
| * Only append ids from Name nodesGravatar Numerlor2022-06-15-2/+4
| |
| * Check assignments nested in ifs when searching for symbol definitionGravatar Numerlor2022-06-15-14/+33
| |
| * Add decorator to block duplicate command invocations in a channelGravatar Numerlor2022-06-15-1/+234
| |
| * add typing-extensionsGravatar Numerlor2022-06-15-49/+51
| |
| * port command_wraps/update_wrapper_globals from botGravatar Numerlor2022-06-15-1/+118
|/
* Merge pull request #79 from python-discord/upgrade-docsv7.1.1Gravatar ChrisJL2022-05-30-139/+612
|\
| * Fix Bullet Points In ChangelogGravatar Hassan Abouelela2022-05-30-10/+10
| | | | | | | | | | Co-authored-by: Chris Lovering <[email protected]> Signed-off-by: Hassan Abouelela <[email protected]>
| * Speed Up Docs CIGravatar Hassan Abouelela2022-05-30-2/+0
| | | | | | | | | | | | Removes unnecessary `depends-on` to speed up builds. Signed-off-by: Hassan Abouelela <[email protected]>
| * Fix Entry In ChangelogGravatar Hassan Abouelela2022-05-30-1/+1
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Include `origin` In Allowed Docs VersionsGravatar Hassan Abouelela2022-05-30-2/+2
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Pass Branch Name To Docs In CIGravatar Hassan Abouelela2022-05-29-4/+8
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Check Out The Entire Repository For MultiversionGravatar Hassan Abouelela2022-05-29-2/+4
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Update Docs CI For MultiversionGravatar Hassan Abouelela2022-05-29-5/+34
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Only Build Current Branch When Option EnabledGravatar Hassan Abouelela2022-05-29-2/+14
| | | | | | | | | | | | | | Changes the behavior of `BUILD_DOCS_FOR_HEAD` to add only the current branch to the build whitelist, instead of all branches. Signed-off-by: Hassan Abouelela <[email protected]>
| * Declare Releases As Parallel-Read SafeGravatar Hassan Abouelela2022-05-29-0/+10
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Delete CHANGELOG.mdGravatar Hassan Abouelela2022-05-29-88/+0
| | | | | | | | | | | | Deleted CHANGELOG.md in favor of the changelog in the docs. Signed-off-by: Hassan Abouelela <[email protected]>
| * Document The Docs FolderGravatar Hassan Abouelela2022-05-29-0/+20
| | | | | | | | | | | | | | Add a brief explanation about each item in the docs folder, to help contributors navigate and understand what each part does. Signed-off-by: Hassan Abouelela <[email protected]>
| * Add Sphinx-MultiVersionGravatar Hassan Abouelela2022-05-29-23/+241
| | | | | | | | | | | | | | | | Adds the sphinx-multiversion package to be used for generating docs for all versions of the project, not just the latest. This includes all the necessary configuration to make it work cleanly. Signed-off-by: Hassan Abouelela <[email protected]>
| * Restore Releases ChangelogGravatar Hassan Abouelela2022-05-29-23/+289
| | | | | | | | | | | | | | Add the releases-based changelog system back, and migrate the old changelog entries. Signed-off-by: Hassan Abouelela <[email protected]>
| * Remove Discord `MissingSentinel`Gravatar Hassan Abouelela2022-05-28-2/+4
|/ | | | | | | | Replaces the access to `discord.utils._MissingSentinel` with a simple boolean flag. This has the benefit of behaving more nicely with our doc generation. Signed-off-by: Hassan Abouelela <[email protected]>
* Merge pull request #78 from python-discord/bump-d.pyv7.1.0Gravatar Hassan Abouelela2022-05-28-191/+195
|\ | | | | Bump Discord.py to 4cbe8f5