Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #23

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ repos:
- id: trailing-whitespace
name: Trim Trailing Whitespaces
- repo: https://github.com/psf/black
rev: "23.9.1"
rev: "23.11.0"
hooks:
- id: black
name: Reformatting with Black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.292
rev: v0.1.6
hooks:
- id: ruff
name: Check Ruff
- repo: https://github.com/python-poetry/poetry
rev: "1.6.0"
rev: "1.7.0"
hooks:
- id: poetry-check
stages: [push]
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# configzen `v0.10.0`

> [!WARNING]
> This project is currently under an intense rewriting process to be compatible with pydantic v2 and work more reliably, compared to its initial version.
> Please hang on for a little! 🚀

_configzen_ – easily create and maintain complex, statically-typed configurations with validation in Python.

It's important to keep your configuration safe and consistent. Give a shot to _configzen_ 🚀
Expand Down
3 changes: 2 additions & 1 deletion install
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env bash
# (C) bswck
#
# Usage:
Expand Down Expand Up @@ -27,4 +28,4 @@ CMD="export PATH=\$PATH:$DIR/scripts"
APPEND="\n# Add repo scripts to PATH for convenience.\n$CMD\n"
ACTIVATE="$(poetry env info -p)/bin/activate"

echo $APPEND >> $ACTIVATE
echo $APPEND >> $ACTIVATE
Loading