TSVZ 3.11__tar.gz → 3.12__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.2
2
2
  Name: TSVZ
3
- Version: 3.11
3
+ Version: 3.12
4
4
  Summary: An simple in memory wrapper around a TSV file to function as a database
5
5
  Home-page: https://github.com/yufei-pan/TSVZ
6
6
  Author: Yufei Pan
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: TSVZ
3
- Version: 3.11
3
+ Version: 3.12
4
4
  Summary: An simple in memory wrapper around a TSV file to function as a database
5
5
  Home-page: https://github.com/yufei-pan/TSVZ
6
6
  Author: Yufei Pan
@@ -1,4 +1,9 @@
1
1
  #!/usr/bin/env python3
2
+ # /// script
3
+ # requires-python = ">=3.6"
4
+ # dependencies = [
5
+ # ]
6
+ # ///
2
7
  import os , sys
3
8
  from collections import OrderedDict , deque
4
9
  import time
@@ -17,7 +22,8 @@ if os.name == 'nt':
17
22
  elif os.name == 'posix':
18
23
  import fcntl
19
24
 
20
- version = '3.11'
25
+ version = '3.12'
26
+ __version__ = version
21
27
  author = 'pan@zopyr.us'
22
28
 
23
29
  DEFAULT_DELIMITER = '\t'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes