effectual 0.5.0__tar.gz → 0.5.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: effectual
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: A python package/script bundler
5
5
  Project-URL: Homepage, https://github.com/effectualpy/effectual
6
6
  Author-email: jake <jakewdr@proton.me>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "effectual"
3
- version = "0.5.0"
3
+ version = "0.5.2"
4
4
  description = "A python package/script bundler"
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -40,10 +40,10 @@ def main() -> None:
40
40
 
41
41
  runCommand = subprocess.Popen(["uv", "run", outputFile], shell=True)
42
42
 
43
- lastHashSet: set[str] = getAllHashes(sourceDirectory, ".py")
43
+ lastHashSet: set[str] = getAllHashes(str(sourceDirectory))
44
44
 
45
45
  while True:
46
- currentHashSet: set[str] = getAllHashes(sourceDirectory, ".py")
46
+ currentHashSet: set[str] = getAllHashes(str(sourceDirectory))
47
47
  if currentHashSet != lastHashSet:
48
48
  lastHashSet = currentHashSet
49
49
  runCommand.kill()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes