Commit fbe9b8d2fc427a445d0b78cc29db2c782c3f4ba5

Authored by Miguel Barão
1 parent 1b9491c2
Exists in master and in 1 other branch dev

add dependency schema in setup.py

Showing 2 changed files with 3 additions and 3 deletions   Show diff stats
demo/demo.yaml
... ... @@ -32,7 +32,7 @@ autosubmit: false
32 32 # shown to the student. If false, the test is saved but not corrected.
33 33 # No grade is shown to the student.
34 34 # (default: true)
35   -autocorrect: false
  35 +autocorrect: true
36 36  
37 37 # Show points for each question (min and max).
38 38 # (default: true)
... ...
setup.py
... ... @@ -29,8 +29,8 @@ setup(
29 29 'pyyaml>=5.1',
30 30 'pygments',
31 31 'sqlalchemy>=1.4',
32   - # 'sqlalchemy[asyncio,mypy]>=1.4',
33   - 'bcrypt>=3.1'
  32 + 'bcrypt>=3.1',
  33 + 'schema>=0.7.5',
34 34 ],
35 35 entry_points={
36 36 'console_scripts': [
... ...