Skip to content

Commit ddc367d

Browse files
committed
Make compadible with python>=3.7.12
1 parent f736d9e commit ddc367d

File tree

3 files changed

+28
-42
lines changed

3 files changed

+28
-42
lines changed

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Bradley Steinfeld, Sam Prokopchuk, James Reeve"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.20.5"
26+
release = "0.20.6"
2727

2828

2929
# -- General configuration ---------------------------------------------------

poetry.lock

Lines changed: 26 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

skillsnetwork/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def _verify_files_dont_exist(
137137
if remove_if_exist:
138138
while path.is_symlink():
139139
temp = Path(os.readlink(path))
140-
path.unlink(missing_ok=True)
140+
path.unlink()
141141
path = temp
142142
if path.exists():
143143
_rmrf(path)

0 commit comments

Comments
 (0)