-
Notifications
You must be signed in to change notification settings - Fork 70
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
Switch to GitHub actions and cleanup syntax/API use #48
Conversation
- Update a jinja2 import to avoid removed methods (removal in 3.1, new method appeared in 3.0 - so bump requirement to 3.0 too) - Fix a few python syntax warnings. - Update README's mention of what this repo can parse. - Fix a Practitioner typo in a comment. Fix by Kevin Wood (kwood16).
92b2544
to
702b066
Compare
README.md
Outdated
The `master` branch is currently capable of parsing _STU 3, v3.0.0_. | ||
The `develop` branch should be capable of parsing the continuous integration build and will be merged into master on new major FHIR releases. | ||
There may be tags for specific freezes, see [releases](https://github.com/smart-on-fhir/fhir-parser/releases). | ||
The `master` branch is currently capable of parsing _R5_. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The develop
branch is strictly 14 commits behind master
currently - folks seem to have switched to trunk-based dev (which seems fine, since it's currently backwards compatible).
I took out the link to releases because (a) there are no release, just tags and (b) even the tags aren't very up to date - just a bunch of 1.x stuff from early days.
Jinja2>=2.9.5 | ||
MarkupSafe==0.23 | ||
colorlog>=2.10.0 | ||
jinja2>=3.0 | ||
requests>=2.13.0 | ||
colorlog==2.10.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MarkupSafe didn't seem to be used anymore, so I removed it (and loosened the pins on the other requirements)
0a41fb2
to
3fb65f7
Compare
3fb65f7
to
94adfa1
Compare
Fixes #45
Fixes #47