meerschaum 2.2.1__py3-none-any.whl → 2.2.2rc1__py3-none-any.whl

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.
meerschaum/actions/api.py CHANGED
@@ -169,7 +169,7 @@ def _api_start(
169
169
  ### `check_update` must be False, because otherwise Uvicorn's hidden imports will break things.
170
170
  dotenv = attempt_import('dotenv', lazy=False)
171
171
  uvicorn, gunicorn = attempt_import(
172
- 'uvicorn', 'gunicorn', venv=None, lazy=False, check_update=False,
172
+ 'uvicorn', 'gunicorn', lazy=False, check_update=False,
173
173
  )
174
174
 
175
175
  uvicorn_config_path = API_UVICORN_RESOURCES_PATH / SERVER_ID / 'config.json'
@@ -350,7 +350,6 @@ def _api_start(
350
350
  )
351
351
  for k, v in env_dict.items()
352
352
  },
353
- venv = None,
354
353
  debug = debug,
355
354
  )
356
355
  except KeyboardInterrupt:
@@ -140,7 +140,7 @@ def _upgrade_packages(
140
140
  if venv is NoVenv:
141
141
  venv = 'mrsm'
142
142
  if len(action) == 0:
143
- group = 'full'
143
+ group = 'api'
144
144
  else:
145
145
  group = action[0]
146
146
 
@@ -110,6 +110,7 @@ default_system_config = {
110
110
  'space': False,
111
111
  'join_fetch': False,
112
112
  'inplace_sync': True,
113
+ 'uv_pip': True,
113
114
  },
114
115
  }
115
116
  default_pipes_config = {
@@ -82,24 +82,24 @@ for _plugin_path in _plugins_paths_to_remove:
82
82
 
83
83
  ENVIRONMENT_VENVS_DIR = STATIC_CONFIG['environment']['venvs']
84
84
  if ENVIRONMENT_VENVS_DIR in os.environ:
85
- VENVS_DIR_PATH = Path(os.environ[ENVIRONMENT_VENVS_DIR]).resolve()
86
- if not VENVS_DIR_PATH.exists():
85
+ _VENVS_DIR_PATH = Path(os.environ[ENVIRONMENT_VENVS_DIR]).resolve()
86
+ if not _VENVS_DIR_PATH.exists():
87
87
  try:
88
- VENVS_DIR_PATH.mkdir(parents=True, exist_ok=True)
88
+ _VENVS_DIR_PATH.mkdir(parents=True, exist_ok=True)
89
89
  except Exception as e:
90
90
  print(
91
91
  f"Invalid path set for environment variable '{ENVIRONMENT_VENVS_DIR}':\n"
92
- + f"{VENVS_DIR_PATH}"
92
+ + f"{_VENVS_DIR_PATH}"
93
93
  )
94
- VENVS_DIR_PATH = (_ROOT_DIR_PATH / 'venvs').resolve()
95
- print(f"Will use the following path for venvs instead:\n{VENVS_DIR_PATH}")
94
+ _VENVS_DIR_PATH = (_ROOT_DIR_PATH / 'venvs').resolve()
95
+ print(f"Will use the following path for venvs instead:\n{_VENVS_DIR_PATH}")
96
96
  else:
97
- VENVS_DIR_PATH = _ROOT_DIR_PATH / 'venvs'
97
+ _VENVS_DIR_PATH = _ROOT_DIR_PATH / 'venvs'
98
98
 
99
99
  paths = {
100
- 'PACKAGE_ROOT_PATH' : str(Path(__file__).parent.parent.resolve()),
101
- 'ROOT_DIR_PATH' : str(_ROOT_DIR_PATH),
102
- 'VIRTENV_RESOURCES_PATH' : str(VENVS_DIR_PATH),
100
+ 'PACKAGE_ROOT_PATH' : Path(__file__).parent.parent.resolve().as_posix(),
101
+ 'ROOT_DIR_PATH' : _ROOT_DIR_PATH.as_posix(),
102
+ 'VIRTENV_RESOURCES_PATH' : _VENVS_DIR_PATH.as_posix(),
103
103
  'CONFIG_DIR_PATH' : ('{ROOT_DIR_PATH}', 'config'),
104
104
  'DEFAULT_CONFIG_DIR_PATH' : ('{ROOT_DIR_PATH}', 'default_config'),
105
105
  'PATCH_DIR_PATH' : ('{ROOT_DIR_PATH}', 'patch_config'),
@@ -186,7 +186,6 @@ def __getattr__(name: str) -> Path:
186
186
  if name.endswith('RESOURCES_PATH') or name == 'CONFIG_DIR_PATH':
187
187
  path.mkdir(parents=True, exist_ok=True)
188
188
  elif 'FILENAME' in name:
189
- path = str(path)
189
+ path = path.as_posix()
190
190
 
191
191
  return path
192
-
@@ -2,4 +2,4 @@
2
2
  Specify the Meerschaum release version.
3
3
  """
4
4
 
5
- __version__ = "2.2.1"
5
+ __version__ = "2.2.2rc1"
@@ -0,0 +1,10 @@
1
+ #! /usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ # vim:fenc=utf-8
4
+
5
+ """
6
+ External API for importing Meerschaum paths.
7
+ """
8
+
9
+ from meerschaum.config._paths import __getattr__, paths
10
+ __all__ = tuple(paths.keys())
@@ -215,9 +215,8 @@ def sync(
215
215
 
216
216
  ### Activate and invoke `sync(pipe)` for plugin connectors with `sync` methods.
217
217
  try:
218
- if p.connector.type == 'plugin' and p.connector.sync is not None:
219
- connector_plugin = Plugin(p.connector.label)
220
- with Venv(connector_plugin, debug=debug):
218
+ if getattr(p.connector, 'sync', None) is not None:
219
+ with Venv(get_connector_plugin(p.connector), debug=debug):
221
220
  return_tuple = p.connector.sync(p, debug=debug, **kw)
222
221
  p._exists = None
223
222
  if not isinstance(return_tuple, tuple):
@@ -466,12 +466,13 @@ def _get_package_metadata(import_name: str, venv: Optional[str]) -> Dict[str, st
466
466
  import re
467
467
  from meerschaum.config._paths import VIRTENV_RESOURCES_PATH
468
468
  install_name = _import_to_install_name(import_name)
469
- _args = ['show', install_name]
469
+ _args = ['pip', 'show', install_name]
470
470
  if venv is not None:
471
471
  cache_dir_path = VIRTENV_RESOURCES_PATH / venv / 'cache'
472
- _args += ['--cache-dir', str(cache_dir_path)]
472
+ _args += ['--cache-dir', cache_dir_path.as_posix()]
473
+
473
474
  proc = run_python_package(
474
- 'pip', _args,
475
+ 'uv', _args,
475
476
  capture_output=True, as_proc=True, venv=venv, universal_newlines=True,
476
477
  )
477
478
  outs, errs = proc.communicate()
@@ -721,6 +722,7 @@ def pip_install(
721
722
  check_pypi: bool = True,
722
723
  check_wheel: bool = True,
723
724
  _uninstall: bool = False,
725
+ _install_uv_pip: bool = True,
724
726
  color: bool = True,
725
727
  silent: bool = False,
726
728
  debug: bool = False,
@@ -776,6 +778,7 @@ def pip_install(
776
778
 
777
779
  """
778
780
  from meerschaum.config._paths import VIRTENV_RESOURCES_PATH
781
+ from meerschaum.config import get_config
779
782
  from meerschaum.utils.warnings import warn
780
783
  if args is None:
781
784
  args = ['--upgrade'] if not _uninstall else []
@@ -787,9 +790,31 @@ def pip_install(
787
790
  have_wheel = venv_contains_package('wheel', venv=venv, debug=debug)
788
791
 
789
792
  _args = list(args)
790
- have_pip = venv_contains_package('pip', venv=venv, debug=debug)
793
+ have_pip = venv_contains_package('pip', venv=None, debug=debug)
794
+ try:
795
+ import uv
796
+ have_uv_pip = True
797
+ except ImportError:
798
+ have_uv_pip = False
799
+ if have_pip and not have_uv_pip and _install_uv_pip:
800
+ if not pip_install(
801
+ 'uv',
802
+ venv = None,
803
+ debug = debug,
804
+ _install_uv_pip = False,
805
+ check_update = False,
806
+ check_pypi = False,
807
+ check_wheel = False,
808
+ ):
809
+ warn(
810
+ f"Failed to install `uv` for virtual environment '{venv}'.",
811
+ color = False,
812
+ )
813
+
814
+ use_uv_pip = venv_contains_package('uv', venv=None, debug=debug)
815
+
791
816
  import sys
792
- if not have_pip:
817
+ if not have_pip and not use_uv_pip:
793
818
  if not get_pip(venv=venv, debug=debug):
794
819
  import sys
795
820
  minor = sys.version_info.minor
@@ -806,13 +831,18 @@ def pip_install(
806
831
 
807
832
  with Venv(venv, debug=debug):
808
833
  if venv is not None:
809
- if '--ignore-installed' not in args and '-I' not in _args and not _uninstall:
834
+ if (
835
+ '--ignore-installed' not in args
836
+ and '-I' not in _args
837
+ and not _uninstall
838
+ and not use_uv_pip
839
+ ):
810
840
  _args += ['--ignore-installed']
811
841
  if '--cache-dir' not in args and not _uninstall:
812
842
  cache_dir_path = VIRTENV_RESOURCES_PATH / venv / 'cache'
813
843
  _args += ['--cache-dir', str(cache_dir_path)]
814
844
 
815
- if 'pip' not in ' '.join(_args):
845
+ if 'pip' not in ' '.join(_args) and not use_uv_pip:
816
846
  if check_update and not _uninstall:
817
847
  pip = attempt_import('pip', venv=venv, install=False, debug=debug, lazy=False)
818
848
  if need_update(pip, check_pypi=check_pypi, debug=debug):
@@ -820,13 +850,16 @@ def pip_install(
820
850
 
821
851
  _args = (['install'] if not _uninstall else ['uninstall']) + _args
822
852
 
823
- if check_wheel and not _uninstall:
853
+ if check_wheel and not _uninstall and not use_uv_pip:
824
854
  if not have_wheel:
825
855
  if not pip_install(
826
856
  'setuptools', 'wheel',
827
857
  venv = venv,
828
- check_update = False, check_pypi = False,
829
- check_wheel = False, debug = debug,
858
+ check_update = False,
859
+ check_pypi = False,
860
+ check_wheel = False,
861
+ debug = debug,
862
+ _install_uv_pip = False,
830
863
  ):
831
864
  warn(
832
865
  (
@@ -838,21 +871,21 @@ def pip_install(
838
871
 
839
872
  if requirements_file_path is not None:
840
873
  _args.append('-r')
841
- _args.append(str(pathlib.Path(requirements_file_path).resolve()))
874
+ _args.append(pathlib.Path(requirements_file_path).resolve().as_posix())
842
875
 
843
876
  if not ANSI and '--no-color' not in _args:
844
877
  _args.append('--no-color')
845
878
 
846
- if '--no-input' not in _args:
879
+ if '--no-input' not in _args and not use_uv_pip:
847
880
  _args.append('--no-input')
848
881
 
849
- if _uninstall and '-y' not in _args:
882
+ if _uninstall and '-y' not in _args and not use_uv_pip:
850
883
  _args.append('-y')
851
884
 
852
- if '--no-warn-conflicts' not in _args and not _uninstall:
885
+ if '--no-warn-conflicts' not in _args and not _uninstall and not use_uv_pip:
853
886
  _args.append('--no-warn-conflicts')
854
887
 
855
- if '--disable-pip-version-check' not in _args:
888
+ if '--disable-pip-version-check' not in _args and not use_uv_pip:
856
889
  _args.append('--disable-pip-version-check')
857
890
 
858
891
  if '--target' not in _args and '-t' not in _args and not _uninstall:
@@ -863,12 +896,16 @@ def pip_install(
863
896
  and '-t' not in _args
864
897
  and not inside_venv()
865
898
  and not _uninstall
899
+ and not use_uv_pip
866
900
  ):
867
901
  _args += ['--user']
902
+ if '--break-system-packages' not in _args and not _uninstall:
903
+ _args.append('--break-system-packages')
868
904
 
869
905
  if debug:
870
906
  if '-v' not in _args or '-vv' not in _args or '-vvv' not in _args:
871
- pass
907
+ if use_uv_pip:
908
+ _args.append('--verbose')
872
909
  else:
873
910
  if '-q' not in _args or '-qq' not in _args or '-qqq' not in _args:
874
911
  pass
@@ -883,7 +920,7 @@ def pip_install(
883
920
  if not silent:
884
921
  print(msg)
885
922
 
886
- if not _uninstall:
923
+ if _uninstall:
887
924
  for install_name in _packages:
888
925
  _install_no_version = get_install_no_version(install_name)
889
926
  if _install_no_version in ('pip', 'wheel'):
@@ -896,10 +933,15 @@ def pip_install(
896
933
  f"Failed to clean up package '{_install_no_version}'.",
897
934
  )
898
935
 
936
+ if use_uv_pip:
937
+ _args.insert(0, 'pip')
938
+ if not _uninstall:
939
+ _args.append('--prerelease=allow')
940
+
899
941
  rc = run_python_package(
900
- 'pip',
942
+ ('pip' if not use_uv_pip else 'uv'),
901
943
  _args + _packages,
902
- venv = venv,
944
+ venv = None,
903
945
  env = _get_pip_os_env(),
904
946
  debug = debug,
905
947
  )
@@ -1031,6 +1073,10 @@ def run_python_package(
1031
1073
  if cwd is not None:
1032
1074
  os.chdir(cwd)
1033
1075
  executable = venv_executable(venv=venv)
1076
+ venv_path = (VIRTENV_RESOURCES_PATH / venv) if venv is not None else None
1077
+ env_dict = kw.get('env', os.environ).copy()
1078
+ if venv_path is not None:
1079
+ env_dict.update({'VIRTUAL_ENV': venv_path.as_posix()})
1034
1080
  command = [executable, '-m', str(package_name)] + [str(a) for a in args]
1035
1081
  import traceback
1036
1082
  if debug:
@@ -1055,7 +1101,7 @@ def run_python_package(
1055
1101
  command,
1056
1102
  stdout = stdout,
1057
1103
  stderr = stderr,
1058
- env = kw.get('env', os.environ),
1104
+ env = env_dict,
1059
1105
  )
1060
1106
  to_return = proc if as_proc else proc.wait()
1061
1107
  except KeyboardInterrupt:
@@ -53,6 +53,7 @@ packages: Dict[str, Dict[str, str]] = {
53
53
  'dill' : 'dill>=0.3.3',
54
54
  'virtualenv' : 'virtualenv>=20.1.0',
55
55
  'apscheduler' : 'APScheduler>=4.0.0a5',
56
+ 'uv' : 'uv>=0.2.11',
56
57
  },
57
58
  'drivers': {
58
59
  'cryptography' : 'cryptography>=38.0.1',
@@ -8,7 +8,7 @@ Schedule processes and threads.
8
8
 
9
9
  from __future__ import annotations
10
10
  import sys
11
- from datetime import datetime, timezone, timedelta, timedelta
11
+ from datetime import datetime, timezone, timedelta
12
12
  import meerschaum as mrsm
13
13
  from meerschaum.utils.typing import Callable, Any, Optional, List, Dict
14
14
 
@@ -361,6 +361,8 @@ def init_venv(
361
361
  verified_venvs.add(venv)
362
362
  return True
363
363
 
364
+ import io
365
+ from contextlib import redirect_stdout, redirect_stderr
364
366
  import sys, platform, os, pathlib, shutil
365
367
  from meerschaum.config.static import STATIC_CONFIG
366
368
  from meerschaum.config._paths import VIRTENV_RESOURCES_PATH
@@ -381,25 +383,34 @@ def init_venv(
381
383
  verified_venvs.add(venv)
382
384
  return True
383
385
 
384
- from meerschaum.utils.packages import run_python_package, attempt_import
386
+ from meerschaum.utils.packages import run_python_package, attempt_import, _get_pip_os_env
385
387
  global tried_virtualenv
386
388
  try:
387
389
  import venv as _venv
390
+ uv = attempt_import('uv', venv=None, debug=debug)
388
391
  virtualenv = None
389
392
  except ImportError:
390
393
  _venv = None
394
+ uv = None
391
395
  virtualenv = None
392
-
393
396
 
394
397
  _venv_success = False
395
- if _venv is not None:
396
- import io
397
- from contextlib import redirect_stdout
398
+
399
+ if uv is not None:
400
+ _venv_success = run_python_package(
401
+ 'uv',
402
+ ['venv', venv_path.as_posix(), '-q'],
403
+ venv = None,
404
+ env = _get_pip_os_env(),
405
+ debug = debug,
406
+ ) == 0
407
+
408
+ if _venv is not None and not _venv_success:
398
409
  f = io.StringIO()
399
410
  with redirect_stdout(f):
400
411
  _venv_success = run_python_package(
401
412
  'venv',
402
- [str(venv_path)] + (
413
+ [venv_path.as_posix()] + (
403
414
  ['--symlinks'] if platform.system() != 'Windows' else []
404
415
  ),
405
416
  venv=None, debug=debug
@@ -438,7 +449,7 @@ def init_venv(
438
449
  except Exception as e:
439
450
  import traceback
440
451
  traceback.print_exc()
441
- virtualenv.cli_run([str(venv_path)])
452
+ virtualenv.cli_run([venv_path.as_posix()])
442
453
  if dist_packages_path.exists():
443
454
  vtp.mkdir(exist_ok=True, parents=True)
444
455
  for file_path in dist_packages_path.glob('*'):
@@ -614,7 +625,7 @@ def venv_target_path(
614
625
  return site_path
615
626
 
616
627
  ### Allow for dist-level paths (running as root).
617
- for possible_dist in reversed(site.getsitepackages()):
628
+ for possible_dist in site.getsitepackages():
618
629
  dist_path = pathlib.Path(possible_dist)
619
630
  if not dist_path.exists():
620
631
  continue
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: meerschaum
3
- Version: 2.2.1
3
+ Version: 2.2.2rc1
4
4
  Summary: Sync Time-Series Pipes with Meerschaum
5
5
  Home-page: https://meerschaum.io
6
6
  Author: Bennett Meares
@@ -79,6 +79,7 @@ Requires-Dist: watchfiles >=0.21.0 ; extra == 'api'
79
79
  Requires-Dist: dill >=0.3.3 ; extra == 'api'
80
80
  Requires-Dist: virtualenv >=20.1.0 ; extra == 'api'
81
81
  Requires-Dist: APScheduler >=4.0.0a5 ; extra == 'api'
82
+ Requires-Dist: uv >=0.2.11 ; extra == 'api'
82
83
  Requires-Dist: pprintpp >=0.4.0 ; extra == 'api'
83
84
  Requires-Dist: asciitree >=0.3.3 ; extra == 'api'
84
85
  Requires-Dist: typing-extensions >=4.7.1 ; extra == 'api'
@@ -127,6 +128,7 @@ Requires-Dist: watchfiles >=0.21.0 ; extra == 'core'
127
128
  Requires-Dist: dill >=0.3.3 ; extra == 'core'
128
129
  Requires-Dist: virtualenv >=20.1.0 ; extra == 'core'
129
130
  Requires-Dist: APScheduler >=4.0.0a5 ; extra == 'core'
131
+ Requires-Dist: uv >=0.2.11 ; extra == 'core'
130
132
  Provides-Extra: dash
131
133
  Requires-Dist: Flask-Compress >=1.10.1 ; extra == 'dash'
132
134
  Requires-Dist: dash >=2.6.2 ; extra == 'dash'
@@ -212,6 +214,7 @@ Requires-Dist: watchfiles >=0.21.0 ; extra == 'full'
212
214
  Requires-Dist: dill >=0.3.3 ; extra == 'full'
213
215
  Requires-Dist: virtualenv >=20.1.0 ; extra == 'full'
214
216
  Requires-Dist: APScheduler >=4.0.0a5 ; extra == 'full'
217
+ Requires-Dist: uv >=0.2.11 ; extra == 'full'
215
218
  Requires-Dist: cryptography >=38.0.1 ; extra == 'full'
216
219
  Requires-Dist: psycopg[binary] >=3.1.18 ; extra == 'full'
217
220
  Requires-Dist: PyMySQL >=0.9.0 ; extra == 'full'
@@ -295,6 +298,7 @@ Requires-Dist: watchfiles >=0.21.0 ; extra == 'sql'
295
298
  Requires-Dist: dill >=0.3.3 ; extra == 'sql'
296
299
  Requires-Dist: virtualenv >=20.1.0 ; extra == 'sql'
297
300
  Requires-Dist: APScheduler >=4.0.0a5 ; extra == 'sql'
301
+ Requires-Dist: uv >=0.2.11 ; extra == 'sql'
298
302
  Provides-Extra: stack
299
303
  Requires-Dist: docker-compose >=1.29.2 ; extra == 'stack'
300
304
 
@@ -21,7 +21,7 @@ meerschaum/_internal/term/TermPageHandler.py,sha256=Rt5S47Pr_3HLJc8xIXpZUczYE_Dw
21
21
  meerschaum/_internal/term/__init__.py,sha256=xIwEWXyq1qaU7Rx-AryTtANJPdm__fy3XSMzxaFn0wU,1594
22
22
  meerschaum/_internal/term/tools.py,sha256=bpYexJBDCQXfzz6ESMvmpSHM1AIy4qWsrAHl95tSW2I,716
23
23
  meerschaum/actions/__init__.py,sha256=7CNoKEqkqqafqMcChspJX9cR9OdgEWk9ggj0000Jl98,11360
24
- meerschaum/actions/api.py,sha256=mWhv4bn3Ap17_Gqf2Cx9bAsHKG-Zhy072pBbNzHLEJc,12756
24
+ meerschaum/actions/api.py,sha256=MJSx9Gj_5gNC375Xx4b7YW8W01lNYjiSX0S6KbRwc3c,12716
25
25
  meerschaum/actions/bootstrap.py,sha256=JnIyJ4odw6cA4e0Cw7J8THkLavMcj68nRyGsQDAT8nc,13396
26
26
  meerschaum/actions/clear.py,sha256=OoFZE0bK5m8s3GLNZcixuVT0DMj1izXVxGCATcmUGbI,4851
27
27
  meerschaum/actions/copy.py,sha256=8g3ANXfVdvuyaoXcZjgTg3BxHTOhHGrzVDOOsTBrpSU,6213
@@ -46,7 +46,7 @@ meerschaum/actions/stop.py,sha256=KTBadAmJ6SbReqlltkwfqZW6EryB4kZXupl0ZyInI0Q,43
46
46
  meerschaum/actions/sync.py,sha256=10uPREu3HBVgtzakVxhCegQOz_mistABJlsNNCMgywY,17518
47
47
  meerschaum/actions/tag.py,sha256=SJf5qFW0ccLXjqlTdkK_0MCcrCMdg6xhYrhKdco0hdA,3053
48
48
  meerschaum/actions/uninstall.py,sha256=2fUd5ZK45VGGCI8V4NLmSnavdKjOv7cGM22x2WlTStw,6068
49
- meerschaum/actions/upgrade.py,sha256=VQKyjCGioEF2FYbQmldHh21imDqApNl0xal0rhxzrJk,6302
49
+ meerschaum/actions/upgrade.py,sha256=w0f7QmJcOMU6RuwvLNCQBJgFV0iQe9jDrH1nZZEmvRk,6301
50
50
  meerschaum/actions/verify.py,sha256=tY5slGpHiWiE0v9TDnjbmxSKn86zBnu9WBpixUgKNQU,4885
51
51
  meerschaum/api/__init__.py,sha256=LEAAhOBNT6VHRTiLKWfVxBHBbqeucilHXLelrPkxjZI,7385
52
52
  meerschaum/api/_chain.py,sha256=h8-WXUGXX6AqzdALfsBC5uv0FkAcLdHJXCGzqzuq89k,875
@@ -124,18 +124,19 @@ meerschaum/api/routes/_webterm.py,sha256=7eilgDXckpEc2LyeNmJS5YO6HxlyMkwPnAMWd7e
124
124
  meerschaum/api/tables/__init__.py,sha256=e2aNC0CdlWICTUMx1i9RauF8Pm426J0RZJbsJWv4SWo,482
125
125
  meerschaum/config/__init__.py,sha256=01hZ4Z8jGs4LbcIwNTeVzSvHD-Y0nAgiewRgngVUYb4,11517
126
126
  meerschaum/config/_dash.py,sha256=BJHl4xMrQB-YHUEU7ldEW8q_nOPoIRSOqLrfGElc6Dw,187
127
- meerschaum/config/_default.py,sha256=DSbyVcAL55Xf8MJCTxpgF7ZXL-O9peeMEqL29WFfsJ4,5251
127
+ meerschaum/config/_default.py,sha256=J6AWxxXM4mntCdkM6bKIpyQznZ5NuMICmTaurF11J9Q,5275
128
128
  meerschaum/config/_edit.py,sha256=CE8gumBiOtnZZdTATCLAZgUnhL04yJdReaNCrv1yuJc,8218
129
129
  meerschaum/config/_environment.py,sha256=Vv4DLDfc2vKLbCLsMvkQDj77K4kEvHKEBmUBo-wCrgo,4419
130
130
  meerschaum/config/_formatting.py,sha256=RT_oU0OSfUkzeqbY5jvEJwuove_t9sP4MyUb1Px250U,6635
131
131
  meerschaum/config/_jobs.py,sha256=2bEikO48qVSguFS3lrbWz6uiKt_0b3oSRWhwyz8RRDM,1279
132
132
  meerschaum/config/_patch.py,sha256=21N30q1ANmWMDQ-2RUjpMx7KafWfPQ3lKx9rrMqg1s4,1526
133
- meerschaum/config/_paths.py,sha256=TihDGA6IQou3ms1xKYHmRTU48kOflqV5ZOMguG25NM4,8154
133
+ meerschaum/config/_paths.py,sha256=xS7zim8Dr7LIJQBTzDH8IOhTZ4AHMvc5a1np8SGX4Rg,8185
134
134
  meerschaum/config/_preprocess.py,sha256=-AEA8m_--KivZwTQ1sWN6LTn5sio_fUr2XZ51BO6wLs,1220
135
135
  meerschaum/config/_read_config.py,sha256=WFZKIXZMDe_ca0ES7ivgM_mnwShvFxLdoeisT_X5-h0,14720
136
136
  meerschaum/config/_shell.py,sha256=s74cmJl8NrhM_Y1cB_P41_JDUYXV0g4WXnKFZWMtnrY,3551
137
137
  meerschaum/config/_sync.py,sha256=oK2ZujO2T1he08BXCFyiniBUevNGWSQKXLcS_jRv_7Y,4155
138
- meerschaum/config/_version.py,sha256=OydT3amCDUZG1dyzap3MREBRuMd53MMaduOv0qZtPL8,71
138
+ meerschaum/config/_version.py,sha256=N_MTjdJ1-uxIJ-zq6VpREFZJIHUWaU9X-HLeq2cJxp8,74
139
+ meerschaum/config/paths.py,sha256=Z7vaOunaEJbVFXiSSz4IthhNOQDI-dhtpi5TpSyrcXg,206
139
140
  meerschaum/config/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
141
  meerschaum/config/stack/__init__.py,sha256=c_WdTSejVdj8lqSE_pK5MhIBkHoftiZWDuEuB9dmk2I,9007
141
142
  meerschaum/config/stack/grafana/__init__.py,sha256=LNXQw2FvHKrD68RDhqDmi2wJjAHaKw9IWx8rNuyWEPo,2010
@@ -188,7 +189,7 @@ meerschaum/core/Pipe/_edit.py,sha256=ZH2A0ZOpZKsVDnQxKzmXspNQKTEFUhkkZDjwOkmWtaY
188
189
  meerschaum/core/Pipe/_fetch.py,sha256=zV3DzD7kfx08O6zda0I-9cX91m0Z_wO_on1ozHaqWnk,5234
189
190
  meerschaum/core/Pipe/_register.py,sha256=Sd5xaAW8H7uLTIoommcKb-6kHPRuHJLWNSbPnt2UbvA,2240
190
191
  meerschaum/core/Pipe/_show.py,sha256=nG50y8eBT9TVuKkRgAKtNDNIxysJvMNxfu__lkL1F9k,1352
191
- meerschaum/core/Pipe/_sync.py,sha256=48qk1xvkcKOqfzzYf3QdA7ojsP80yrso1YU8QIGJxwE,28038
192
+ meerschaum/core/Pipe/_sync.py,sha256=g_cQ4e4fd6_8qzjOjSH4hhO5vy2y0ZF8InOP9Lolzj8,27975
192
193
  meerschaum/core/Pipe/_verify.py,sha256=KSnthUzImRLjt9fxyBaLvArqDuOLRpKBfk0tnseJClc,14262
193
194
  meerschaum/core/Plugin/__init__.py,sha256=UXg64EvJPgI1PCxkY_KM02-ZmBm4FZpLPIQR_uSJJDc,137
194
195
  meerschaum/core/User/_User.py,sha256=CApB7Y0QJL6S9QOCCfrG4SbPuPXJ9AsAYQ5pASMP_Aw,6527
@@ -205,7 +206,7 @@ meerschaum/utils/networking.py,sha256=Sr_eYUGW8_UV9-k9LqRFf7xLtbUcsDucODyLCRsFRU
205
206
  meerschaum/utils/pool.py,sha256=vkE42af4fjrTEJTxf6Ek3xGucm1MtEkpsSEiaVzNKHs,2655
206
207
  meerschaum/utils/process.py,sha256=IHnUhX79XofHwMsOs1A_irLMa7i48xXB-GCL83MtZOY,7192
207
208
  meerschaum/utils/prompt.py,sha256=0mBFbgi_l9rCou9UnC_6qKTHkqyl1Z_jSRzfmc0xRXM,16490
208
- meerschaum/utils/schedule.py,sha256=2UpXg5E9mfjg83w3N6C2_Q7tlE2exVJehro2Bvp6PzQ,10871
209
+ meerschaum/utils/schedule.py,sha256=btAeSDaoFH62-7wTO0U7NK9P9QHV46PtY3DJ8DN_mCY,10860
209
210
  meerschaum/utils/sql.py,sha256=4sCNEpgUd6uFz6ySs4nnUMVaOT0YAvPM1ZlQYJTSF-0,46656
210
211
  meerschaum/utils/threading.py,sha256=3N8JXPAnwqJiSjuQcbbJg3Rv9-CCUMJpeQRfKFR7MaA,2489
211
212
  meerschaum/utils/typing.py,sha256=L05wOXfWdn_nJ0KnZVr-2zdMYcqjdyOW_7InT3xe6-s,2807
@@ -223,16 +224,16 @@ meerschaum/utils/formatting/_jobs.py,sha256=s1lVcdMkzNj5Bqw-GsUhcguUFtahi5nQ-kg1
223
224
  meerschaum/utils/formatting/_pipes.py,sha256=wy0iWJFsFl3X2VloaiA_gp9Yx9w6tD3FQZvAQAqef4A,19492
224
225
  meerschaum/utils/formatting/_pprint.py,sha256=tgrT3FyGyu5CWJYysqK3kX1xdZYorlbOk9fcU_vt9Qg,3096
225
226
  meerschaum/utils/formatting/_shell.py,sha256=ox75O7VHDAiwzSvdMSJZhXLadvAqYJVeihU6WeZ2Ogc,3677
226
- meerschaum/utils/packages/__init__.py,sha256=HEJYz_rceqljpyRFlnToLR6vc_b7r-2d2K8zh_th2lg,57185
227
- meerschaum/utils/packages/_packages.py,sha256=P1Y0mc0TlX5iCL08U-4WkMG9LpEt_REWo30GJUn38cM,7865
227
+ meerschaum/utils/packages/__init__.py,sha256=JphZrLCOUEb_haPaHaZIuqhBC7qmcRzQ-KJ7zmfrkV8,58805
228
+ meerschaum/utils/packages/_packages.py,sha256=kWoo1KWvpQgR3rY_rpHzvGIh14BBFH92Erw5UtW7yX0,7918
228
229
  meerschaum/utils/packages/lazy_loader.py,sha256=VHnph3VozH29R4JnSSBfwtA5WKZYZQFT_GeQSShCnuc,2540
229
230
  meerschaum/utils/venv/_Venv.py,sha256=sBnlmxHdAh2bx8btfVoD79-H9-cYsv5lP02IIXkyECs,3553
230
- meerschaum/utils/venv/__init__.py,sha256=sj-n8scWH2NPDJGAxfpqzsYqVUt2jMEr-7Uq9G7YUNQ,23183
231
- meerschaum-2.2.1.dist-info/LICENSE,sha256=jG2zQEdRNt88EgHUWPpXVWmOrOduUQRx7MnYV9YIPaw,11359
232
- meerschaum-2.2.1.dist-info/METADATA,sha256=XUYdU9OV2qtydf3XiXIvkA0gE-Nikh43zj_KRqA4ruo,23807
233
- meerschaum-2.2.1.dist-info/NOTICE,sha256=OTA9Fcthjf5BRvWDDIcBC_xfLpeDV-RPZh3M-HQBRtQ,114
234
- meerschaum-2.2.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
235
- meerschaum-2.2.1.dist-info/entry_points.txt,sha256=5YBVzibw-0rNA_1VjB16z5GABsOGf-CDhW4yqH8C7Gc,88
236
- meerschaum-2.2.1.dist-info/top_level.txt,sha256=bNoSiDj0El6buocix-FRoAtJOeq1qOF5rRm2u9i7Q6A,11
237
- meerschaum-2.2.1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
238
- meerschaum-2.2.1.dist-info/RECORD,,
231
+ meerschaum/utils/venv/__init__.py,sha256=7LLxqwU8Z8uvRYJybMrFn6S7GSbImM-dC7htK_U45G8,23545
232
+ meerschaum-2.2.2rc1.dist-info/LICENSE,sha256=jG2zQEdRNt88EgHUWPpXVWmOrOduUQRx7MnYV9YIPaw,11359
233
+ meerschaum-2.2.2rc1.dist-info/METADATA,sha256=WnclvWj4jo-2o4309EOzcVnBQOwJ10sjb8m9olY9Z5I,23988
234
+ meerschaum-2.2.2rc1.dist-info/NOTICE,sha256=OTA9Fcthjf5BRvWDDIcBC_xfLpeDV-RPZh3M-HQBRtQ,114
235
+ meerschaum-2.2.2rc1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
236
+ meerschaum-2.2.2rc1.dist-info/entry_points.txt,sha256=5YBVzibw-0rNA_1VjB16z5GABsOGf-CDhW4yqH8C7Gc,88
237
+ meerschaum-2.2.2rc1.dist-info/top_level.txt,sha256=bNoSiDj0El6buocix-FRoAtJOeq1qOF5rRm2u9i7Q6A,11
238
+ meerschaum-2.2.2rc1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
239
+ meerschaum-2.2.2rc1.dist-info/RECORD,,