nano-dev-utils 0.4.3__tar.gz → 0.4.4__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.

Potentially problematic release.


This version of nano-dev-utils might be problematic. Click here for more details.

Files changed (20) hide show
  1. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.idea/workspace.xml +15 -3
  2. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/PKG-INFO +3 -3
  3. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/README.md +2 -2
  4. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/pyproject.toml +1 -1
  5. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.gitignore +0 -0
  6. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.idea/.gitignore +0 -0
  7. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  8. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.idea/misc.xml +0 -0
  9. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.idea/modules.xml +0 -0
  10. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.idea/nano_dev_utils.iml +0 -0
  11. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/.idea/vcs.xml +0 -0
  12. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/LICENSE.md +0 -0
  13. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/src/nano_dev_utils/__init__.py +0 -0
  14. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/src/nano_dev_utils/dynamic_importer.py +0 -0
  15. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/src/nano_dev_utils/release_ports.py +0 -0
  16. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/src/nano_dev_utils/timers.py +0 -0
  17. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/tests/__init__.py +0 -0
  18. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/tests/testing_dynamic_importer.py +0 -0
  19. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/tests/testing_release_ports.py +0 -0
  20. {nano_dev_utils-0.4.3 → nano_dev_utils-0.4.4}/tests/testing_timer.py +0 -0
@@ -4,7 +4,10 @@
4
4
  <option name="autoReloadType" value="SELECTIVE" />
5
5
  </component>
6
6
  <component name="ChangeListManager">
7
- <list default="true" id="96bbbefe-efb6-42c4-93da-e069ac3e654f" name="Changes" comment="removed 'src' (package-ready)" />
7
+ <list default="true" id="96bbbefe-efb6-42c4-93da-e069ac3e654f" name="Changes" comment="LICENSE link update">
8
+ <change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
9
+ <change beforePath="$PROJECT_DIR$/pyproject.toml" beforeDir="false" afterPath="$PROJECT_DIR$/pyproject.toml" afterDir="false" />
10
+ </list>
8
11
  <option name="SHOW_DIALOG" value="false" />
9
12
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
13
  <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -278,7 +281,15 @@
278
281
  <option name="project" value="LOCAL" />
279
282
  <updated>1745770229679</updated>
280
283
  </task>
281
- <option name="localTasksCounter" value="22" />
284
+ <task id="LOCAL-00022" summary="LICENSE link update">
285
+ <option name="closed" value="true" />
286
+ <created>1745770550231</created>
287
+ <option name="number" value="00022" />
288
+ <option name="presentableId" value="LOCAL-00022" />
289
+ <option name="project" value="LOCAL" />
290
+ <updated>1745770550231</updated>
291
+ </task>
292
+ <option name="localTasksCounter" value="23" />
282
293
  <servers />
283
294
  </component>
284
295
  <component name="Vcs.Log.Tabs.Properties">
@@ -310,6 +321,7 @@
310
321
  <MESSAGE value="release_ports: Externalizing logger's config to a user's app. &#10;timers: improve code, docstring and type hinting&#10;README updates IAW with the above changes &#10;Version update: 0.4.0" />
311
322
  <MESSAGE value="release_ports unittests - minor update" />
312
323
  <MESSAGE value="removed 'src' (package-ready)" />
313
- <option name="LAST_COMMIT_MESSAGE" value="removed 'src' (package-ready)" />
324
+ <MESSAGE value="LICENSE link update" />
325
+ <option name="LAST_COMMIT_MESSAGE" value="LICENSE link update" />
314
326
  </component>
315
327
  </project>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nano_dev_utils
3
- Version: 0.4.3
3
+ Version: 0.4.4
4
4
  Summary: A collection of small Python utilities for developers.
5
5
  Project-URL: Homepage, https://github.com/yaronday/nano_utils
6
6
  Project-URL: Issues, https://github.com/yaronday/nano_utils/issues
@@ -122,9 +122,9 @@ It supports Windows, Linux, and macOS.
122
122
  import logging
123
123
  from nano_dev_utils import PortsRelease
124
124
 
125
- # in case you're interested in logging
125
+ # For configuration of logging level and format (supported already):
126
126
  logging.basicConfig(filename='port release.log',
127
- level=logging.INFO, # specify here desire level, e.g. DEBUG etc.
127
+ level=logging.INFO, # DEBUG, WARNING, ERROR, CRITICAL
128
128
  format='%(asctime)s - %(levelname)s: %(message)s',
129
129
  datefmt='%d-%m-%Y %H:%M:%S')
130
130
 
@@ -108,9 +108,9 @@ It supports Windows, Linux, and macOS.
108
108
  import logging
109
109
  from nano_dev_utils import PortsRelease
110
110
 
111
- # in case you're interested in logging
111
+ # For configuration of logging level and format (supported already):
112
112
  logging.basicConfig(filename='port release.log',
113
- level=logging.INFO, # specify here desire level, e.g. DEBUG etc.
113
+ level=logging.INFO, # DEBUG, WARNING, ERROR, CRITICAL
114
114
  format='%(asctime)s - %(levelname)s: %(message)s',
115
115
  datefmt='%d-%m-%Y %H:%M:%S')
116
116
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nano_dev_utils"
3
- version = "0.4.3"
3
+ version = "0.4.4"
4
4
 
5
5
  authors = [
6
6
  { name="Yaron Dayan", email="yaronday77@gmail.com" },