Skip to content

Commit e96cc5e

Browse files
committed
Release 0.1.6
* Updated pySigma to 0.9 * Added backend metadata * GitHub Actions Poetry dependency
1 parent 138fe52 commit e96cc5e

File tree

6 files changed

+295
-120
lines changed

6 files changed

+295
-120
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ jobs:
1717
with:
1818
python-version: 3.8
1919
- name: Install Poetry
20-
uses: abatilo/[email protected]
21-
with:
22-
poetry-version: 1.2
20+
run: pipx install poetry
2321
- name: Verify versioning
2422
run: |
2523
[ "$(poetry version -s)" == "${GITHUB_REF#refs/tags/v}" ]

.github/workflows/test.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
matrix:
1313
os: [ 'ubuntu-20.04' ]
1414
python-version: [ '3.8', '3.9', '3.10' ]
15-
poetry-version: [ '1.2' ]
1615
runs-on: ${{ matrix.os }}
1716
steps:
1817
- uses: ankane/setup-opensearch@v1
@@ -22,9 +21,7 @@ jobs:
2221
with:
2322
python-version: ${{ matrix.python-version }}
2423
- name: Install Poetry
25-
uses: abatilo/[email protected]
26-
with:
27-
poetry-version: ${{ matrix.poetry-version }}
24+
run: pipx install poetry
2825
- name: Install dependencies
2926
run: poetry install
3027
- name: Run tests

0 commit comments

Comments
 (0)