devstack-cli 10.0.178__py3-none-any.whl → 11.0.73__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.
cli.py CHANGED
@@ -83,6 +83,7 @@ class FileSystemEventHandlerToQueue(watchdog.events.FileSystemEventHandler):
83
83
  if event.event_type in (
84
84
  watchdog.events.EVENT_TYPE_OPENED,
85
85
  watchdog.events.EVENT_TYPE_CLOSED,
86
+ watchdog.events.EVENT_TYPE_CLOSED_NO_WRITE,
86
87
  ):
87
88
  return
88
89
  if event.event_type == watchdog.events.EVENT_TYPE_MODIFIED and event.is_directory:
@@ -96,7 +97,7 @@ class FileSystemEventHandlerToQueue(watchdog.events.FileSystemEventHandler):
96
97
 
97
98
  async def run_subprocess(
98
99
  program: str,
99
- args: str,
100
+ args: typing.List[str],
100
101
  *,
101
102
  name: str,
102
103
  cwd: typing.Optional[pathlib.Path] = None,
@@ -1780,12 +1781,12 @@ class Cli:
1780
1781
  term_size=(terminal_size.columns, terminal_size.lines),
1781
1782
  ) as conn:
1782
1783
  try:
1783
- async with conn.create_process(
1784
+ self.terminal_process = await conn.create_process(
1784
1785
  stdin=os.dup(sys.stdin.fileno()),
1785
1786
  stdout=os.dup(sys.stdout.fileno()),
1786
1787
  stderr=os.dup(sys.stderr.fileno()),
1787
- ) as self.terminal_process:
1788
- await self.terminal_process.wait()
1788
+ )
1789
+ await self.terminal_process.wait()
1789
1790
  finally:
1790
1791
  self.terminal_process = None
1791
1792
  except asyncio.CancelledError:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: devstack-cli
3
- Version: 10.0.178
3
+ Version: 11.0.73
4
4
  Summary: Command-line access to Cloud Development Environments (CDEs) created by Cloudomation DevStack
5
5
  Author-email: Stefan Mückstein <stefan@cloudomation.com>
6
6
  Project-URL: Homepage, https://cloudomation.com/
@@ -0,0 +1,9 @@
1
+ __init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ cli.py,sha256=e_HrG1aQNj9JLYri4Z4H8Vbpu4FcPQBWasmuBd7lCm0,79506
3
+ version.py,sha256=cOXMAGG0vlVpsDTBPI-rB3pCJhWPYZdywA7qLRnkAzI,180
4
+ devstack_cli-11.0.73.dist-info/LICENSE,sha256=TDjWoz9k8i0lKc_SA2uwzCjnV_kM_FuO1-V-bLW-8ZU,1055
5
+ devstack_cli-11.0.73.dist-info/METADATA,sha256=9lTPHaQRGNIgrjcros6NO1sp92S2OTNYpDjPLhmwik4,4287
6
+ devstack_cli-11.0.73.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
7
+ devstack_cli-11.0.73.dist-info/entry_points.txt,sha256=f0xb4DIk0a7E5kyZ7YpoLhtjoagQj5VQpeBbW9a8A9Y,42
8
+ devstack_cli-11.0.73.dist-info/top_level.txt,sha256=lP8zvU46Am_G0MPcNmCI6f0sMfwpDUWpTROaPs-IEPk,21
9
+ devstack_cli-11.0.73.dist-info/RECORD,,
version.py CHANGED
@@ -2,8 +2,8 @@
2
2
  constants, set by build
3
3
  """
4
4
 
5
- MAJOR = '10'
6
- BRANCH_NAME = 'release-10'
7
- BUILD_DATE = '2025-01-23-041540'
8
- SHORT_SHA = '5300825'
9
- VERSION = '10+release-10.2025-01-23-041540.5300825'
5
+ MAJOR = '11'
6
+ BRANCH_NAME = 'release-11'
7
+ BUILD_DATE = '2025-01-28-041349'
8
+ SHORT_SHA = 'e1031a1'
9
+ VERSION = '11+release-11.2025-01-28-041349.e1031a1'
@@ -1,9 +0,0 @@
1
- __init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- cli.py,sha256=1Pkq3GbHKGVjJ0hkVNTWMvpltmImbwSaY-mwry34qQw,79444
3
- version.py,sha256=6u2DEAA30HlsP0mbNfkBTZn5Ni2_ExTYSfaUiQXzvDg,180
4
- devstack_cli-10.0.178.dist-info/LICENSE,sha256=TDjWoz9k8i0lKc_SA2uwzCjnV_kM_FuO1-V-bLW-8ZU,1055
5
- devstack_cli-10.0.178.dist-info/METADATA,sha256=C774eyhwhhqdE_t0vY0aBzMyzbDsGzvOLuB_-25VwEQ,4288
6
- devstack_cli-10.0.178.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
7
- devstack_cli-10.0.178.dist-info/entry_points.txt,sha256=f0xb4DIk0a7E5kyZ7YpoLhtjoagQj5VQpeBbW9a8A9Y,42
8
- devstack_cli-10.0.178.dist-info/top_level.txt,sha256=lP8zvU46Am_G0MPcNmCI6f0sMfwpDUWpTROaPs-IEPk,21
9
- devstack_cli-10.0.178.dist-info/RECORD,,