Skip to content
Open
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
3 changes: 3 additions & 0 deletions .git_archival.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node: $Format:%H$
node-date: $Format:%cI$
describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
*.dylib
*.egg-info
*.pyc
*.so
.DS_Store
.cache
.coverage
.coverage.*
.eggs
.direnv
.envrc
.hypothesis
.mypy_cache
.pytest_cache/
.tox
.vscode
__pycache__
_build
dist
pip-wheel-metadata/
src/argon2/_ffi.py
docs/_build/
Justfile
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

31 changes: 18 additions & 13 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@
---
ci:
autoupdate_schedule: monthly

repos:
- repo: https://github.com/psf/black
rev: 21.7b0
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.12
hooks:
- id: black
language_version: python3.8
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/PyCQA/isort
rev: 5.9.3
- repo: https://github.com/econchick/interrogate
rev: 1.7.0
hooks:
- id: isort
additional_dependencies: [toml]
- id: interrogate
args: [tests]

- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: flake8
- id: codespell

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: debug-statements
- id: check-toml
- id: check-yaml
1 change: 1 addition & 0 deletions .python-version-default
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
20 changes: 20 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
version: 2

build:
os: ubuntu-lts-latest
tools:
# Keep version in sync with tox.ini/docs.
python: "3.13"
jobs:
create_environment:
# Need the tags to calculate the version (sometimes).
- git fetch --tags

- asdf plugin add uv
- asdf install uv latest
- asdf global uv latest

build:
html:
- uvx --with tox-uv tox run -e docs-build -- $READTHEDOCS_OUTPUT
14 changes: 0 additions & 14 deletions .readthedocs.yml

This file was deleted.

30 changes: 0 additions & 30 deletions AUTHORS.rst

This file was deleted.

Loading
Loading