Skip to content

Commit 1647934

Browse files
authored
Merge pull request #28 from MC-kit/devel
Devel
2 parents 20590fe + 01db4d6 commit 1647934

File tree

11 files changed

+350
-323
lines changed

11 files changed

+350
-323
lines changed

.github/release-drafter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ template: |
6363
6464
$CHANGES
6565
66-
## Contrbutors
66+
## Contributors
6767
$CONTRIBUTORS

.github/workflows/constraints.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pip==21.3.1
2-
nox==2021.10.1
1+
pip==22.0.3
2+
nox==2022.1.7
33
nox-poetry==0.9.0
44
poetry==1.1.11
5-
virtualenv==20.10.0
5+
virtualenv==20.13.1

dev/clear-prev-dist-info.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ def get_packages_dir() -> Path:
1919
if system == "Windows":
2020
site_packages = Path("Lib", "site-packages")
2121
else:
22-
site_packages = Path("lib", f"python{sys.version[0:3]}", "site-packages")
22+
python = f"python{sys.version_info.major}.{sys.version_info.minor}"
23+
site_packages = Path("lib", python, "site-packages")
2324
result = Path(sys.prefix, site_packages)
2425
if not result.is_dir():
25-
raise ValueError(f"Cannot find site package for system {system}")
26+
raise ValueError(
27+
f"Cannot find site package for system {system} in folder {result}"
28+
)
2629
return result
2730

2831

noxfile.py

-3
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,6 @@ def coverage(s: Session) -> None:
164164

165165
s.run("coverage", *args)
166166

167-
# if "html" not in args:
168-
# session.run("coverage", "html")
169-
170167

171168
@session(python=supported_pythons)
172169
def typeguard(s: Session) -> None:

0 commit comments

Comments
 (0)