Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bow committed Oct 5, 2023
1 parent ecafa02 commit 58bb95f
Show file tree
Hide file tree
Showing 4 changed files with 852 additions and 891 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
repos:
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.9.1
hooks:
- id: black
name: "Apply Black"
Expand Down
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ PYTHON_VERSION := 3.11.0
VENV_NAME ?= $(APP_NAME)-dev

# Non-pyproject.toml dependencies.
PIP_DEPS := poetry==1.2.2 poetry-dynamic-versioning==0.19.0 twine==4.0.1
PIP_DEPS := poetry==1.6.1 poetry-dynamic-versioning==1.1.0 twine==4.0.2

# Non-pyproject.toml dev dependencies.
PIP_DEV_DEPS := pre-commit
Expand Down Expand Up @@ -119,15 +119,13 @@ env: ## Configure a local development environment.
&& . "$(shell pyenv root)/versions/$(VENV_NAME)/bin/activate" \
&& pip install --upgrade pip && pyenv rehash \
&& pip install $(PIP_DEPS) $(PIP_DEV_DEPS) && pyenv rehash \
&& poetry config experimental.new-installer false \
&& poetry config virtualenvs.create false \
&& poetry install && pyenv rehash \
&& pre-commit install && pyenv rehash \
&& printf "Done.\n" >&2; \
else \
printf "Configuring a local, bare dev environment ...\n" >&2 \
&& pip install $(PIP_DEPS) $(PIP_DEV_DEPS) \
&& poetry config experimental.new-installer false \
&& poetry config virtualenvs.create false \
&& poetry install \
&& pre-commit install \
Expand Down
Loading

0 comments on commit 58bb95f

Please sign in to comment.