py-app-dev 2.3.1__tar.gz → 2.3.2__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: py-app-dev
3
- Version: 2.3.1
3
+ Version: 2.3.2
4
4
  Summary: My application development modules.
5
5
  Home-page: https://github.com/cuinixam/python-app-dev
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "py-app-dev"
3
- version = "2.3.1"
3
+ version = "2.3.2"
4
4
  description = "My application development modules."
5
5
  authors = ["cuinixam <me@cuinixam.com>"]
6
6
  license = "MIT"
@@ -0,0 +1 @@
1
+ __version__ = "2.3.2"
@@ -212,7 +212,7 @@ class ScoopWrapper:
212
212
  # (!) Make sure powershell core module does not pollute the module path. Without this change scoop.ps1 fails because 'Get-FileHash' cannot be found.
213
213
  # See more details here: https://github.com/PowerShell/PowerShell/issues/8635
214
214
  env = os.environ.copy()
215
- env["PSModulePath"] = f"{env.get('PSHOME', '')}/Modules"
215
+ env["PSMODULEPATH"] = f"$PSHOME/Modules;{env.get('PSMODULEPATH', '')}"
216
216
  SubprocessExecutor(["powershell.exe", self.scoop_script, "import", tmp_scoop_file], env=env).execute()
217
217
  return apps_to_install
218
218
 
@@ -1 +0,0 @@
1
- __version__ = "2.3.1"
File without changes
File without changes