tutor/requirements/dev.txt

241 lines
4.6 KiB
Plaintext
Raw Normal View History

#
# This file is autogenerated by pip-compile with Python 3.8
# by the following command:
#
# pip-compile requirements/dev.in
#
2023-10-11 07:39:55 +00:00
altgraph==0.17.4
# via pyinstaller
appdirs==1.4.4
# via -r requirements/base.txt
2023-10-11 07:39:55 +00:00
astroid==3.0.1
# via pylint
attrs==23.1.0
# via scriv
2023-10-11 07:39:55 +00:00
black==23.10.1
# via -r requirements/dev.in
2023-10-11 07:39:55 +00:00
build==1.0.3
# via pip-tools
2023-10-11 07:39:55 +00:00
cachetools==5.3.2
# via
# -r requirements/base.txt
# google-auth
certifi==2023.7.22
# via
# -r requirements/base.txt
# kubernetes
# requests
2023-10-11 07:39:55 +00:00
cffi==1.16.0
# via cryptography
2023-10-11 07:39:55 +00:00
charset-normalizer==3.3.1
# via
# -r requirements/base.txt
# requests
click==8.1.7
# via
# -r requirements/base.txt
# black
# click-log
# pip-tools
# scriv
click-log==0.4.0
# via scriv
2023-10-11 07:39:55 +00:00
coverage==7.3.2
# via -r requirements/dev.in
cryptography==41.0.7
# via secretstorage
dill==0.3.7
# via pylint
2023-10-11 07:39:55 +00:00
docutils==0.18.1
# via
# -r requirements/dev.in
# readme-renderer
google-auth==2.23.3
# via
# -r requirements/base.txt
# kubernetes
idna==3.4
# via
# -r requirements/base.txt
# requests
importlib-metadata==6.8.0
# via
2023-10-11 07:39:55 +00:00
# build
# keyring
2023-10-11 07:39:55 +00:00
# pyinstaller
# twine
importlib-resources==6.1.1
# via keyring
isort==5.12.0
# via pylint
jaraco-classes==3.3.0
# via keyring
jeepney==0.8.0
# via
# keyring
# secretstorage
jinja2==3.1.2
# via
# -r requirements/base.txt
# scriv
keyring==24.2.0
# via twine
2023-10-11 07:39:55 +00:00
kubernetes==28.1.0
# via -r requirements/base.txt
markdown-it-py==3.0.0
2023-10-11 07:39:55 +00:00
# via
# rich
# scriv
markupsafe==2.1.3
# via
# -r requirements/base.txt
# jinja2
mccabe==0.7.0
# via pylint
mdurl==0.1.2
# via markdown-it-py
more-itertools==10.1.0
# via jaraco-classes
2023-10-11 07:39:55 +00:00
mypy==1.6.1
# via -r requirements/base.txt
mypy-extensions==1.0.0
# via
# -r requirements/base.txt
# black
# mypy
2023-10-11 07:39:55 +00:00
nh3==0.2.14
# via readme-renderer
oauthlib==3.2.2
# via
# -r requirements/base.txt
# kubernetes
# requests-oauthlib
2023-10-11 07:39:55 +00:00
packaging==23.2
# via
# black
# build
2023-10-11 07:39:55 +00:00
# pyinstaller
pathspec==0.11.2
# via black
pip-tools==7.3.0
# via -r requirements/dev.in
pkginfo==1.9.6
# via twine
2023-10-11 07:39:55 +00:00
platformdirs==3.11.0
# via
# black
# pylint
pyasn1==0.5.0
# via
# -r requirements/base.txt
# pyasn1-modules
# rsa
pyasn1-modules==0.3.0
# via
# -r requirements/base.txt
# google-auth
pycparser==2.21
# via cffi
2023-10-11 07:39:55 +00:00
pycryptodome==3.19.0
# via -r requirements/base.txt
pygments==2.16.1
# via
# readme-renderer
# rich
2023-10-11 07:39:55 +00:00
pyinstaller==6.1.0
# via -r requirements/dev.in
2023-10-11 07:39:55 +00:00
pyinstaller-hooks-contrib==2023.10
# via pyinstaller
2023-10-11 07:39:55 +00:00
pylint==3.0.2
# via -r requirements/dev.in
pyproject-hooks==1.0.0
# via build
python-dateutil==2.8.2
# via
# -r requirements/base.txt
# kubernetes
pyyaml==6.0.1
# via
# -r requirements/base.txt
# kubernetes
2023-10-11 07:39:55 +00:00
readme-renderer==42.0
# via twine
requests==2.31.0
# via
# -r requirements/base.txt
# kubernetes
# requests-oauthlib
# requests-toolbelt
# scriv
# twine
requests-oauthlib==1.3.1
# via
# -r requirements/base.txt
# kubernetes
requests-toolbelt==1.0.0
# via twine
rfc3986==2.0.0
# via twine
2023-10-11 07:39:55 +00:00
rich==13.6.0
# via twine
rsa==4.9
# via
# -r requirements/base.txt
# google-auth
2023-10-11 07:39:55 +00:00
scriv==1.5.0
# via -r requirements/dev.in
secretstorage==3.3.3
# via keyring
six==1.16.0
# via
# -r requirements/base.txt
# kubernetes
# python-dateutil
feat: migrate to plugins.v1 with filters & actions This is a very large refactoring which aims at making Tutor both more extendable and more generic. Historically, the Tutor plugin system was designed as an ad-hoc solution to allow developers to modify their own Open edX platforms without having to fork Tutor. The plugin API was simple, but limited, because of its ad-hoc nature. As a consequence, there were many things that plugin developers could not do, such as extending different parts of the CLI or adding custom template filters. Here, we refactor the whole codebase to make use of a generic plugin system. This system was inspired by the Wordpress plugin API and the Open edX "hooks and filters" API. The various components are added to a small core thanks to a set of actions and filters. Actions are callback functions that can be triggered at different points of the application lifecycle. Filters are functions that modify some data. Both actions and filters are collectively named as "hooks". Hooks can optionally be created within a certain context, which makes it easier to keep track of which application created which callback. This new hooks system allows us to provide a Python API that developers can use to extend their applications. The API reference is added to the documentation, along with a new plugin development tutorial. The plugin v0 API remains supported for backward compatibility of existing plugins. Done: - Do not load commands from plugins which are not enabled. - Load enabled plugins once on start. - Implement contexts for actions and filters, which allow us to keep track of the source of every hook. - Migrate patches - Migrate commands - Migrate plugin detection - Migrate templates_root - Migrate config - Migrate template environment globals and filters - Migrate hooks to tasks - Generate hook documentation - Generate patch reference documentation - Add the concept of action priority Close #499.
2022-02-07 17:11:43 +00:00
tomli==2.0.1
# via
# -r requirements/base.txt
# black
# build
# mypy
# pip-tools
# pylint
# pyproject-hooks
tomlkit==0.12.1
# via pylint
2022-11-22 12:53:29 +00:00
twine==4.0.2
# via -r requirements/dev.in
types-docutils==0.20.0.3
# via -r requirements/dev.in
2023-10-11 07:39:55 +00:00
types-pyyaml==6.0.12.12
# via -r requirements/dev.in
2023-10-11 07:39:55 +00:00
types-setuptools==68.2.0.0
# via -r requirements/dev.in
2023-10-11 07:39:55 +00:00
typing-extensions==4.8.0
# via
# -r requirements/base.txt
# astroid
# black
# mypy
# pylint
# rich
urllib3==1.26.18
# via
# -r requirements/base.txt
# kubernetes
# requests
# twine
2023-10-11 07:39:55 +00:00
websocket-client==1.6.4
# via
# -r requirements/base.txt
# kubernetes
wheel==0.41.2
# via pip-tools
2023-10-11 07:39:55 +00:00
zipp==3.17.0
# via
# importlib-metadata
# importlib-resources
2020-01-13 21:33:12 +00:00
# The following packages are considered to be unsafe in a requirements file:
# pip
2020-01-13 21:33:12 +00:00
# setuptools