-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Bump py_toxcore_c from
d9b2c11
to 23f477a
Bumps [py_toxcore_c](https://github.com/TokTok/py-toxcore-c) from `d9b2c11` to `23f477a`. - [Commits](TokTok/py-toxcore-c@d9b2c11...23f477a) --- updated-dependencies: - dependency-name: py_toxcore_c dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
- Loading branch information
1 parent
6cd48f0
commit c035209
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule py_toxcore_c
updated
30 files
+13 −1 | .circleci/config.yml | |
+11 −11 | .cirrus.yml | |
+5 −0 | .restyled.yaml | |
+9 −0 | BUILD.bazel | |
+0 −0 | __init__.py | |
+29 −0 | cspell.config.yaml | |
+1 −0 | pytox/toxav/toxav.pxd | |
+11 −3 | pytox/toxcore/tox.pxd | |
+36 −33 | pytox/toxcore/tox.pyi | |
+29 −16 | pytox/toxcore/tox.pyx | |
+1 −0 | pytox/toxencryptsave/toxencryptsave.pxd | |
+4 −0 | pytox/toxencryptsave/toxencryptsave.pyi | |
+49 −1 | pytox/toxencryptsave/toxencryptsave.pyx | |
+1 −1 | setup.py | |
+2 −2 | test/BUILD.bazel | |
+41 −44 | test/auto_tests/auto_test.py | |
+6 −4 | test/tox_options_test.py | |
+3 −1 | test/tox_test.py | |
+24 −0 | test/toxencryptsave_test.py | |
+1 −0 | tools/groupbot/.gitignore | |
+43 −0 | tools/groupbot/BUILD.bazel | |
+0 −0 | tools/groupbot/__init__.py | |
+165 −0 | tools/groupbot/api.py | |
+149 −0 | tools/groupbot/commands.py | |
+208 −0 | tools/groupbot/groupbot.py | |
+ − | tools/groupbot/groupbot.tox | |
+80 −0 | tools/groupbot/nodes.py | |
+30 −0 | tools/groupbot/plugins/echo.py | |
+256 −0 | tools/groupbot/plugins/github.py | |
+29 −17 | tools/stubgen.py |