File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,14 @@ dev = [
52
52
[tool .hatch .version ]
53
53
path = " src/github3/__about__.py"
54
54
55
+ [tool .hatch .build .targets .sdist ]
56
+ strict-naming = false
57
+
55
58
[tool .hatch .build .targets .wheel ]
56
59
packages = [
57
60
" src/github3" ,
58
61
]
59
-
62
+ strict-naming = false
60
63
61
64
[project .urls ]
62
65
Documentation = " https://github3.readthedocs.io"
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ commands = flake8 {posargs} src/github3/ tests/unit/ tests/integration/
19
19
20
20
[testenv:build]
21
21
skip_install = true
22
- basepython = python3.10
22
+ basepython = python3.11
23
23
deps =
24
24
build
25
25
commands =
26
- python -m build
26
+ python -mbuild -s
27
27
28
28
[testenv:black]
29
29
pip_pre = true
98
98
.
99
99
commands =
100
100
sphinx-build -E -W -c docs/source/ -b html docs/source/ docs/build/html
101
- python -m build
101
+ python -mbuild -s
102
102
twine check --strict dist/*
103
103
104
104
[pytest]
You can’t perform that action at this time.
0 commit comments