Files @ 3ddbe2a5f406
Branch filter:

Location: gimmecert/.gitignore

branko
GC-47: Add support for Python 3.13:

- Simplify the option presence checks in functional tests to avoid
having to deal with differences in output between Python 3.13 and
older versions (similar checks are already in place for things like
key specification anyway). For more details, see this commit:

https://github.com/python/cpython/commit/c4a2e8a2c5188c3288d57b80852e92c83f46f6f3
# Ignore IDE and backup files.
*~
.#*

# Ignore build artefacts.
docs/_build/
dist/
build/

# Ignore Python artefacts.
.eggs/
.pytest_cache/
__pycache__/
*.egg-info/
*.pyc

# Ignore test artefacts.
.coverage
.coverage.*
coverage/
.tox/

# Ignore project temporary directory.
tmp/

# Ignore Vagrant artifacts.
.vagrant