take-note-cli 2.1.6__tar.gz → 2.1.7__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.
Files changed (19) hide show
  1. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/PKG-INFO +4 -5
  2. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/pyproject.toml +4 -3
  3. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/LICENSE +0 -0
  4. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/README.md +0 -0
  5. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/__init__.py +0 -0
  6. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/__main__.py +0 -0
  7. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/config/config-home-notes.yaml +0 -0
  8. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/config/config-work-notes.yaml +0 -0
  9. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/config/config.yaml +0 -0
  10. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/core/__init__.py +0 -0
  11. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/core/generic_editor_handler.py +0 -0
  12. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/core/notes.py +0 -0
  13. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/core/obsidian_handler.py +0 -0
  14. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/core/vscode_handler.py +0 -0
  15. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/utils/__init__.py +0 -0
  16. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/utils/args.py +0 -0
  17. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/utils/config.py +0 -0
  18. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/utils/dates.py +0 -0
  19. {take_note_cli-2.1.6 → take_note_cli-2.1.7}/src/take_note_cli/utils/paths.py +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: take-note-cli
3
- Version: 2.1.6
3
+ Version: 2.1.7
4
4
  Summary: Create and open notes in your favourite editor.
5
5
  License: MIT
6
6
  License-File: LICENSE
7
7
  Keywords: note,tool,utility,cli
8
8
  Author: wsinned
9
9
  Author-email: wsinned@tutanota.com
10
- Requires-Python: >=3.8,<4.0
10
+ Requires-Python: >=3.10,<4.0
11
11
  Classifier: Development Status :: 5 - Production/Stable
12
12
  Classifier: Environment :: Console
13
13
  Classifier: Intended Audience :: Developers
@@ -15,15 +15,14 @@ Classifier: License :: OSI Approved :: MIT License
15
15
  Classifier: Natural Language :: English
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.8
19
- Classifier: Programming Language :: Python :: 3.9
20
18
  Classifier: Programming Language :: Python :: 3.10
21
19
  Classifier: Programming Language :: Python :: 3.11
22
20
  Classifier: Programming Language :: Python :: 3.12
23
21
  Classifier: Programming Language :: Python :: 3.13
24
22
  Classifier: Programming Language :: Python :: 3.14
25
23
  Classifier: Topic :: Utilities
26
- Requires-Dist: confuse (>=2.0,<3.0)
24
+ Requires-Dist: confuse (>=2.2,<3.0)
25
+ Requires-Dist: typing_extensions (>=4.0)
27
26
  Project-URL: Homepage, https://github.com/wsinned/take-note
28
27
  Project-URL: Repository, https://github.com/wsinned/take-note
29
28
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "take-note-cli"
3
- version = "2.1.6"
3
+ version = "2.1.7"
4
4
  description = "Create and open notes in your favourite editor."
5
5
  license = "MIT"
6
6
  authors = [
@@ -26,8 +26,9 @@ packages = [
26
26
  ]
27
27
 
28
28
  [tool.poetry.dependencies]
29
- python = "^3.8"
30
- confuse = "^2.0"
29
+ python = "^3.10"
30
+ confuse = "^2.2"
31
+ typing_extensions = ">=4.0"
31
32
 
32
33
  [tool.poetry.group.dev.dependencies]
33
34
  pytest = "^7.4.3"
File without changes
File without changes