We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc65906 commit 1d03358Copy full SHA for 1d03358
.github/workflows/main.yml
@@ -19,6 +19,7 @@ jobs:
19
- "ubuntu-22.04"
20
- "macos-11"
21
- "macos-12"
22
+ - "macos-13"
23
python-version:
24
- "3.9"
25
- "3.10"
clean.py
@@ -2,6 +2,8 @@
2
import pathlib
3
import shutil
4
5
+[shutil.rmtree(p) for p in pathlib.Path(".").glob(".mypy_cache")]
6
+[shutil.rmtree(p) for p in pathlib.Path(".").glob(".pytest_cache")]
7
[shutil.rmtree(p) for p in pathlib.Path(".").glob(".tox")]
8
[shutil.rmtree(p) for p in pathlib.Path(".").glob("dist")]
9
[shutil.rmtree(p) for p in pathlib.Path(".").glob("*.egg-info")]
0 commit comments