Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Autodesk/pgbelt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f3cbe757ed3c5aacfb351b6c10098d26afa84017
Choose a base ref
..
head repository: Autodesk/pgbelt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2d93b1d37eb9e0b74320b41794e633735f0ad45a
Choose a head ref
Showing with 15 additions and 148 deletions.
  1. +1 −1 Makefile
  2. +12 −145 poetry.lock
  3. +2 −2 pyproject.toml
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'

install: ## Install whatever you have locally
poetry install --no-dev
pip3 install -e .

setup: ## Install development requirements. You should be in a virtualenv
poetry install && pre-commit install
Loading