@@ -15,9 +15,9 @@ classifiers = [
1515 " Programming Language :: Python :: 3.12" ,
1616 " License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)" ,
1717 " Operating System :: Microsoft :: Windows" ,
18- " Operating System :: POSIX :: Linux"
18+ " Operating System :: POSIX :: Linux" ,
1919]
20- packages = [{include = " dtocean_dummy" , from = " src" }]
20+ packages = [{ include = " dtocean_dummy" , from = " src" }]
2121
2222[tool .poetry .urls ]
2323"Bug Tracker" = " https://github.com/DTOcean/dtocean/issues"
@@ -37,14 +37,14 @@ pandas = "^3.0.1"
3737openpyxl = " ^3.1.5"
3838xlrd = " ^2.0.1"
3939xlwt = " ^1.3.0"
40- polite-config = {path = " ../polite-config" , develop = true }
40+ polite-config = { path = " ../polite-config" , develop = true }
4141python-dateutil = " ^2.9.0.post0"
4242
4343[tool .poetry .group .test ]
4444optional = true
4545
4646[tool .poetry .group .test .dependencies ]
47- pytest = " ^8.3.4 "
47+ pytest = " ^9.0.3 "
4848pytest-cov = " ^6.0.0"
4949
5050[tool .poetry .group .audit ]
@@ -78,22 +78,44 @@ description = "Run test under {base_python}"
7878skip_install = true
7979allowlist_externals = [" poetry" ]
8080commands_pre = [
81- [" poetry" , " sync" , " --only" , " dtocean-dummy-module" , " --only" , " test" ]
82- ]
83- commands = [
84- [" poetry" , " run" , " pytest" , " tests" ]
81+ [
82+ " poetry" ,
83+ " sync" ,
84+ " --only" ,
85+ " dtocean-dummy-module" ,
86+ " --only" ,
87+ " test" ,
88+ ],
8589]
90+ commands = [[" poetry" , " run" , " pytest" , " tests" ]]
8691
8792[tool .tox .env .audit ]
8893description = " Run audit check on code base"
8994skip_install = true
9095allowlist_externals = [" poetry" ]
9196commands_pre = [
92- [" poetry" , " sync" , " --only" , " dtocean-dummy-module" , " --only" , " audit" ]
97+ [
98+ " poetry" ,
99+ " sync" ,
100+ " --only" ,
101+ " dtocean-dummy-module" ,
102+ " --only" ,
103+ " audit" ,
104+ ],
93105]
94106commands = [
95- [" poetry" , " run" , " ruff" , " check" ],
96- [" poetry" , " run" , " pyright" , " src" ]
107+ [
108+ " poetry" ,
109+ " run" ,
110+ " ruff" ,
111+ " check" ,
112+ ],
113+ [
114+ " poetry" ,
115+ " run" ,
116+ " pyright" ,
117+ " src" ,
118+ ],
97119]
98120
99121[tool .ruff ]
0 commit comments