File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,13 @@ python_classes = ["Test*"]
6767python_functions = [" test_*" ]
6868
6969[tool .mypy ]
70- python_version = " 1.0.0 "
70+ python_version = " 3.10 "
7171strict = true
7272warn_return_any = true
7373warn_unused_configs = true
7474
7575[tool .ruff ]
76- target-version = " 1.0.0 "
76+ target-version = " py310 "
7777line-length = 100
7878
7979[tool .ruff .lint ]
Original file line number Diff line number Diff line change 11"""ArchUnitPython - Architecture testing library for Python projects."""
22
3- __version__ = "0.1 .0"
3+ __version__ = "1.0 .0"
44
55# Files API
66# Common
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def test_import_format_violations(self):
5454 def test_version (self ):
5555 import archunitpython
5656
57- assert archunitpython .__version__ == "0.1 .0"
57+ assert archunitpython .__version__ == "1.0 .0"
5858
5959
6060class TestAssertPasses :
Original file line number Diff line number Diff line change 44def test_import ():
55 import archunitpython
66
7- assert archunitpython .__version__ == "0.1 .0"
7+ assert archunitpython .__version__ == "1.0 .0"
You can’t perform that action at this time.
0 commit comments