Skip to content

Commit

Permalink
Merge pull request #68 from iris-hep/chore_67_update-lark
Browse files Browse the repository at this point in the history
Update `lark`
  • Loading branch information
masonproffitt authored Oct 3, 2023
2 parents 910abae + fb6f81a commit 24480a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion qastle/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'syntax.lark')

with open(syntax_specification_pathname) as syntax_specification_file:
Parser = lark.Lark(syntax_specification_file.read(), start='record')
Parser = lark.Lark(syntax_specification_file.read(), start='record', maybe_placeholders=False)


def parse(text):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
packages=setuptools.find_packages(exclude=['tests']),
python_requires=('>=2.7, '
'!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.12'),
install_requires=['lark-parser>=0.6.5'],
install_requires=['lark'],
extras_require={'test': ['flake8', 'pytest', 'pytest-cov']},
package_data={'qastle': ['syntax.lark']},
author='Mason Proffitt',
Expand Down

0 comments on commit 24480a1

Please sign in to comment.