pyloid 0.17.4__tar.gz → 0.18.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,16 +1,16 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyloid
3
- Version: 0.17.4
3
+ Version: 0.18.0
4
4
  Summary:
5
5
  Author: aesthetics-of-record
6
6
  Author-email: 111675679+aesthetics-of-record@users.noreply.github.com
7
- Requires-Python: >=3.9,<3.13
7
+ Requires-Python: >=3.9,<3.14
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.9
10
10
  Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
- Requires-Dist: pyside6 (>=6.8.0.2,<7.0.0.0)
13
+ Requires-Dist: pyside6 (>=6.8.1,<7.0.0)
14
14
  Description-Content-Type: text/markdown
15
15
 
16
16
  # Pyloid 👋
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyloid"
3
- version = "0.17.4"
3
+ version = "0.18.0"
4
4
  description = ""
5
5
  authors = ["aesthetics-of-record <111675679+aesthetics-of-record@users.noreply.github.com>"]
6
6
  readme = "README.md"
@@ -9,8 +9,8 @@ packages = [
9
9
  ]
10
10
 
11
11
  [tool.poetry.dependencies]
12
- python = ">=3.9,<3.13"
13
- pyside6 = "^6.8.0.2"
12
+ python = ">=3.9,<3.14"
13
+ pyside6 = "^6.8.1"
14
14
 
15
15
 
16
16
  [build-system]
@@ -25,8 +25,9 @@ def get_production_path(path: Optional[str] = None) -> Optional[str]:
25
25
  >>> print("Not in a production environment.")
26
26
  """
27
27
  if getattr(sys, 'frozen', False):
28
- # If built with PyInstaller
29
- return sys._MEIPASS + "/" + path if path else sys._MEIPASS
28
+ # Nuitka
29
+ base_path = os.path.dirname(sys.executable)
30
+ return os.path.join(base_path, path) if path else base_path
30
31
  else:
31
32
  # If running as a regular Python script
32
33
  return None
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes