p3lib 1.1.117__tar.gz → 1.1.118__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,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: p3lib
3
- Version: 1.1.117
3
+ Version: 1.1.118
4
4
  Summary: A group of python modules for networking, plotting data, config storage, automating boot scripts, ssh access and user input output.
5
- Home-page: https://github.com/pjaos/p3lib
6
5
  License: MIT
7
6
  Author: Paul Austen
8
7
  Author-email: pjaos@gmail.com
@@ -19,6 +18,8 @@ Classifier: Programming Language :: Python :: 3.9
19
18
  Classifier: Programming Language :: Python :: 3.10
20
19
  Classifier: Programming Language :: Python :: 3.11
21
20
  Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Project-URL: Homepage, https://github.com/pjaos/p3lib
22
23
  Project-URL: Repository, https://github.com/pjaos/p3lib
23
24
  Description-Content-Type: text/markdown
24
25
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "p3lib"
3
- version = "1.1.117"
3
+ version = "1.1.118"
4
4
  description = "A group of python modules for networking, plotting data, config storage, automating boot scripts, ssh access and user input output."
5
5
  authors = ["Paul Austen <pjaos@gmail.com>"]
6
6
  license = "MIT License"
@@ -9,8 +9,5 @@ homepage = "https://github.com/pjaos/p3lib"
9
9
  repository = "https://github.com/pjaos/p3lib"
10
10
 
11
11
  [build-system]
12
- requires = [
13
- "setuptools>=42",
14
- "wheel"
15
- ]
16
- build-backend = "setuptools.build_meta"
12
+ requires = ["poetry-core>=1.0.0"]
13
+ build-backend = "poetry.core.masonry.api"
@@ -389,7 +389,8 @@ def getAbsFile(filename):
389
389
  @param filename The name of the icon file.
390
390
  @return The abs path of the file or None if not found."""
391
391
  file_found = None
392
- abs_filename = os.path.abspath(filename)
392
+ startup_path = os.getenv("PWD", os.getcwd())
393
+ abs_filename = os.path.join(startup_path, filename)
393
394
  if os.path.isfile(abs_filename):
394
395
  file_found = abs_filename
395
396
 
@@ -414,7 +415,6 @@ def getAbsFile(filename):
414
415
  if 'site-packages' in path:
415
416
  site_packages_path = path
416
417
  abs_filename = os.path.join(site_packages_path, filename)
417
- print(f"PJA: abs_filename={abs_filename}, FOUND={os.path.isfile(abs_filename)}")
418
418
  if os.path.isfile(abs_filename):
419
419
  file_found = abs_filename
420
420
 
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes