Skip to content

Commit c987582

Browse files
authored
Merge pull request #32 from xsuite/release/v0.3.9
Release 0.3.9
2 parents 3b905c8 + ae4caab commit c987582

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xaux"
3-
version = "0.3.8"
3+
version = "0.3.9"
44
description = "Support tools for Xsuite packages"
55
authors = ["Frederik F. Van der Veken <[email protected]>",
66
"Thomas Pugnat <[email protected]>",

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
from xaux import __version__
77

88
def test_version():
9-
assert __version__ == '0.3.8'
9+
assert __version__ == '0.3.9'
1010

xaux/fs/fs.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,10 @@ def rmdir(self, *args, **kwargs):
194194
Path.rmdir(self.expanduser())
195195

196196
def __eq__(self, other):
197-
other = FsPath(other).expanduser().resolve()
197+
try:
198+
other = FsPath(other).expanduser().resolve()
199+
except:
200+
return False
198201
self = self.expanduser().resolve()
199202
return self.as_posix() == other.as_posix()
200203

xaux/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
# ===================
1111
# Do not change
1212
# ===================
13-
__version__ = '0.3.8'
13+
__version__ = '0.3.9'
1414
# ===================

0 commit comments

Comments
 (0)