Skip to content

Commit 0cf36df

Browse files
authored
Merge pull request #577 from guardrails-ai/0.3.3-release
0.3.3 release
2 parents 903655f + 75664e0 commit 0cf36df

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/cache@v3
3232
with:
3333
path: ~/.cache/pypoetry
34-
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}
34+
key: poetry-cache-${{ runner.os }}-${{ matrix.python-version }}-${{ env.POETRY_VERSION }}
3535

3636
- name: Install Poetry
3737
uses: snok/install-poetry@v1
@@ -63,7 +63,7 @@ jobs:
6363
uses: actions/cache@v3
6464
with:
6565
path: ~/.cache/pypoetry
66-
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ matrix.pydantic-version }}
66+
key: poetry-cache-${{ runner.os }}-${{ matrix.python-version }}-${{ env.POETRY_VERSION }}-${{ matrix.pydantic-version }}
6767

6868
- name: Install Poetry
6969
uses: snok/install-poetry@v1
@@ -96,7 +96,7 @@ jobs:
9696
make type-pydantic-v1-openai-v1
9797
9898
Pytests:
99-
runs-on: ubuntu-latest
99+
runs-on: LargeBois
100100
strategy:
101101
matrix:
102102
python-version: ["3.8", "3.9", "3.10", "3.11"]
@@ -116,7 +116,7 @@ jobs:
116116
uses: actions/cache@v3
117117
with:
118118
path: ~/.cache/pypoetry
119-
key: poetry-cache-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ env.POETRY_VERSION }}-${{ matrix.pydantic-version }}-${{ matrix.openai-version }}
119+
key: poetry-cache-${{ runner.os }}-${{ matrix.python-version }}-${{ env.POETRY_VERSION }}-${{ matrix.pydantic-version }}-${{ matrix.openai-version }}
120120

121121
- name: Install Poetry
122122
uses: snok/install-poetry@v1
@@ -159,17 +159,17 @@ jobs:
159159
uses: actions/setup-python@v4
160160
with:
161161
python-version: 3.11.x
162+
- name: Poetry cache
163+
uses: actions/cache@v3
164+
with:
165+
path: ~/.cache/pypoetry
166+
key: poetry-cache-${{ runner.os }}-3.11.x-${{ env.POETRY_VERSION }}
162167
- name: Install Poetry
163168
uses: snok/install-poetry@v1
164169
with:
165170
virtualenvs-create: true
166171
virtualenvs-in-project: true
167172
installer-parallel: true
168-
- name: Load cached venv
169-
uses: actions/cache@v3
170-
with:
171-
path: .venv
172-
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
173173
- name: Install dependencies
174174
run: |
175175
make full;

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "guardrails-ai"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = "Adding guardrails to large language models."
55
authors = ["Guardrails AI <[email protected]>"]
66
license = "Apache License 2.0"

0 commit comments

Comments
 (0)