Skip to content

Commit b88f078

Browse files
committed
Updated docs requirements
1 parent 129e9d9 commit b88f078

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
cov_badge_path: docs/coverage.svg
4545
steps:
4646
- uses: actions/checkout@v3
47+
- name: Install pandoc
48+
run: sudo apt-get install -y pandoc
4749
- name: Install ${{ env.package }}
4850
run: |
4951
python -m pip install --upgrade pip

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
jinja2<3.1.0
2-
mkdocs==1.2.3
2+
mkdocs>=1.3.0
33
mkdocs-bootswatch
44
mkdocs-material
55
mkdocs-rtd-dropdown

src/tinyscript/helpers/expressions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
WL_NODES = ("add", "and", "binop", "bitand", "bitor", "bitxor", "boolop", "call", "cmpop", "compare", "comprehension",
2121
"constant", "dict", "div", "eq", "expr", "expr_context", "expression", "floordiv", "for", "generatorexp",
2222
"gt", "gte", "in", "index", "invert", "is", "isnot", "list", "listcomp", "load", "lshift", "lt", "lte",
23-
"matmult", "mod", "mult", "name", "not", "noteq", "notin", "num", "operator", "or", "pow", "rshift", "set",
24-
"slice", "store", "str", "sub", "subscript", "tuple", "uadd", "unaryop", "usub")
23+
"matmult", "mod", "mult", "name", "nameconstant", "not", "noteq", "notin", "num", "operator", "or", "pow",
24+
"rshift", "set", "slice", "store", "str", "sub", "subscript", "tuple", "uadd", "unaryop", "usub")
2525

2626

2727
set_exception("ForbiddenNameError", "NameError")

0 commit comments

Comments
 (0)