Skip to content

Commit 0228eaf

Browse files
authored
Merge pull request #465 from aurelio-labs/james/abstract-layers
feat: abstract layers
2 parents 15c38d0 + ff2c3ca commit 0228eaf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+4566
-2624
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Release Docs
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
release:
5+
types: [released]
76

87
jobs:
98
build-docs:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ lint: PYTHON_FILES=.
77
lint_diff: PYTHON_FILES=$(shell git diff --name-only --diff-filter=d main | grep -E '\.py$$')
88

99
lint lint_diff:
10-
poetry run black --target-version py39 -l 88 $(PYTHON_FILES) --check
11-
poetry run ruff .
10+
poetry run black --target-version py311 -l 88 $(PYTHON_FILES) --check
11+
poetry run ruff check .
1212
poetry run mypy $(PYTHON_FILES)
1313

1414
test:

0 commit comments

Comments
 (0)