hmr 0.0.2__tar.gz → 0.0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hmr
3
- Version: 0.0.2
3
+ Version: 0.0.2.1
4
4
  Summary: Hot Module Reload for Python
5
5
  Project-URL: repository, https://github.com/promplate/pyth-on-line/tree/reactivity
6
6
  Requires-Python: >=3.12
@@ -6,7 +6,7 @@ description = "Hot Module Reload for Python"
6
6
  dependencies = [
7
7
  "watchfiles>=0.21,<2",
8
8
  ]
9
- version = "0.0.2"
9
+ version = "0.0.2.1"
10
10
 
11
11
  [project.scripts]
12
12
  hmr = "reactivity.hmr:cli"
@@ -87,7 +87,7 @@ class ReactiveModuleFinder(MetaPathFinder):
87
87
  return None
88
88
 
89
89
  for p in paths or sys.path:
90
- directory = Path(p)
90
+ directory = Path(p).resolve()
91
91
  if directory.is_file():
92
92
  continue
93
93
  if any(directory.is_relative_to(exclude) for exclude in self.excludes):
@@ -219,4 +219,4 @@ def cli():
219
219
  SyncReloader(entry, excludes={".venv"}).keep_watching_until_interrupt()
220
220
 
221
221
 
222
- __version__ = "0.0.2"
222
+ __version__ = "0.0.2.1"
File without changes
File without changes
File without changes
File without changes