Skip to content
Commits on Source (3)
  • nimrod's avatar
    1be3d77e
  • nimrod's avatar
    pipenv update. · 63cc3258
    nimrod authored
    Update the lock file. Mainly just to shut up the dependabot in GitHub.
    63cc3258
  • nimrod's avatar
    Add pyproject.toml. · 30421d6e
    nimrod authored
    It's autogenerated everytime I use pipenv. I don't really need it since
    I'm targeting old Python and Pip versions that even know about it. The
    build system declared is setuptools which is what will be used anyway.
    But I grow tired of always deleting the file (adding it to .gitignore
    doesn't work because check-manifest complains). I _really_ hope it won't
    break anything (if it will it will probably be in new Pip versions so I
    will probably see it, I hope).
    30421d6e
......@@ -40,7 +40,7 @@ repos:
- id: rst-linter
- repo: https://github.com/myint/rstcheck.git
rev: 3f92957478422df87bd730abde66f089cc1ee19b
rev: 3f92957478422df87bd730abde66f089cc1ee19b # pragma: allowlist secret
hooks:
- id: rstcheck
......
This diff is collapsed.
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
\ No newline at end of file