Compare commits

..

No commits in common. "master" and "v0.0.4" have entirely different histories.

2 changed files with 1 additions and 11 deletions

View File

@ -8,17 +8,10 @@ clone:
tags: true
steps:
test:
image: python
commands:
- python -m unittest
when:
event: [tag, pull_request]
build:
image: python
commands:
- python -m pip install build
- python -m pip install hatchling hatch-vcs build
- python -m build
when:
event: tag

View File

@ -2,8 +2,6 @@
A [HashiCorp Config Language](https://github.com/hashicorp/hcl) parser for Python
[![status-badge](https://ci.elara.ws/api/badges/63/status.svg)](https://ci.elara.ws/repos/63)
## Usage
For most simple use-cases, you can use the `load*` convenience functions:
@ -50,6 +48,5 @@ Currently, this parser supports all HCL features except:
- [For Expressions](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#for-expressions)
- [Templates](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#templates)
- [Splat Operators](https://github.com/hashicorp/hcl/blob/main/hclsyntax/spec.md#splat-operators)
Support for these features is planned.