Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add requirements.in #6

Merged
merged 2 commits into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- name: Install dependencies
run: |
python3 -m pip install pytest lark-parser
python3 -m pip install -r requirements.in pytest

- name: Run test suite
run: |
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Step Physical File Validator

Pure-python Step Physical File Validator and Parser implemented using Lark (`pip install lark-parser`).
Pure-python Step Physical File Validator and Parser implemented using Lark (`pip install -r requirements.in`).

## Example command line usage:

Expand Down Expand Up @@ -34,4 +34,4 @@ Expecting HEADER

$ python main.py fixtures\pass_1.ifc
Valid
~~~
~~~
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lark-parser