summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.pre-commit-config.yaml8
-rwxr-xr-xlorry2
-rw-r--r--setup.py2
3 files changed, 5 insertions, 7 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index d16efc3..a3c43e2 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/psf/black
- rev: 22.3.0
+ rev: 23.3.0
hooks:
- id: black
- - repo: https://gitlab.com/pycqa/flake8
- rev: 3.9.2
+ - repo: https://github.com/pycqa/flake8
+ rev: 6.0.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
- rev: 5.10.1
+ rev: 5.12.0
hooks:
- id: isort
diff --git a/lorry b/lorry
index 5fa0569..7337fad 100755
--- a/lorry
+++ b/lorry
@@ -39,7 +39,7 @@ from datetime import datetime
import cliapp
import yaml
-__version__ = "0.0"
+__version__ = "1.0.0"
lorry_path = os.path.realpath(__file__)
diff --git a/setup.py b/setup.py
index 3946308..132a8ef 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,6 @@ class Build(build):
class Clean(clean):
-
clean_files = [".coverage", "build", "lorry.1"]
clean_globs = [
"*/*.py[co]",
@@ -71,7 +70,6 @@ class Clean(clean):
class Check(Command):
-
user_options = []
def initialize_options(self):