Skip to content

Commit d858925

Browse files
committed
Update version for deploy
1 parent daa7f85 commit d858925

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66

77
[project]
88
name = "socketsecurity"
9-
version = "2.0.43"
9+
version = "2.0.44"
1010
requires-python = ">= 3.10"
1111
license = {"file" = "LICENSE"}
1212
dependencies = [

socketsecurity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__author__ = 'socket.dev'
2-
__version__ = '2.0.43'
2+
__version__ = '2.0.44'

socketsecurity/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def find_files(self, path: str) -> List[str]:
201201

202202
for glob_file in glob_files:
203203
if os.path.isfile(glob_file) and not Core.is_excluded(glob_file, self.config.excluded_dirs):
204-
files.add(glob_file)
204+
files.add(glob_file.replace("\\", "/"))
205205

206206
glob_end = time.time()
207207
log.debug(f"Globbing took {glob_end - glob_start:.4f} seconds")

0 commit comments

Comments
 (0)