Skip to content

Commit

Permalink
Fix jsonschema dependency, update others
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout committed Nov 25, 2023
1 parent 19747e3 commit 54cd7d5
Show file tree
Hide file tree
Showing 6 changed files with 1,469 additions and 1,456 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ install: ## Install project dependencies
`if [ "${DEV}" = "0" ]; then echo "--no-dev"; fi`

lint: ## Lint with all tools
make isort black flake mypy
make isort black ruff mypy

test: ## Run test suite
# FIXME: https://github.com/pytest-dev/pytest-xdist/issues/385#issuecomment-1177147322
Expand Down Expand Up @@ -61,8 +61,8 @@ isort: ## Format with isort
black: ## Format with black
poetry run black src tests scripts --exclude ".*/docs.py"

flake: ## Lint with flake8
poetry run flakeheaven lint src tests scripts
ruff: ## Lint with ruff
poetry run ruff check src tests scripts

mypy: ## Lint with mypy
poetry run mypy src scripts tests
Expand All @@ -74,8 +74,8 @@ build: ## Build Python wheel package
poetry build

image: ## Build Docker image
docker buildx build . --file pytezos.dockerfile -t pytezos:${TAG}
docker buildx build . --file michelson-kernel.dockerfile -t michelson-kernel:${TAG}
docker buildx build . --file pytezos.dockerfile -t pytezos:${TAG} --load
docker buildx build . --file michelson-kernel.dockerfile -t michelson-kernel:${TAG} --load

release-patch: ## Release patch version
bumpversion patch
Expand Down
Loading

0 comments on commit 54cd7d5

Please sign in to comment.