68 Commits

Author SHA256 Message Date
b65676c0e6 Accepting request 1325661 from devel:languages:python
- Update to 0.21.1
  * Fix escaping in help text when rich is installed but not used.

OBS-URL: https://build.opensuse.org/request/show/1325661
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=31
2026-01-07 15:00:55 +00:00
Matthias Bach
6e0605ded1 Accepting request 1325658 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1325658
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=65
2026-01-06 19:48:32 +00:00
edfef94db1 Accepting request 1323838 from devel:languages:python
This depends on #1323837.

- Update to 0.20.1
  * Add support for standard tracebacks via the environment
    variable TYPER_STANDARD_TRACEBACK.
  * Ensure that options_metavar is passed through correctly.
  * Ensure an optional argument is shown in brackets, even when
    metavar is set.
  * Ensure that the default rich_markup_mode is interpreted
    correctly.

OBS-URL: https://build.opensuse.org/request/show/1323838
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=30
2025-12-22 21:48:16 +00:00
Matthias Bach
7cbe9eaa44 Accepting request 1323835 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1323835
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=63
2025-12-20 19:58:35 +00:00
b11639e2ca Accepting request 1312888 from devel:languages:python
- Update to 0.20.0
  * Enable command suggestions on typo by default.
  * Add support for Python 3.14.

OBS-URL: https://build.opensuse.org/request/show/1312888
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=29
2025-10-23 14:35:37 +00:00
Matthias Bach
b6288e28b4 Accepting request 1312886 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1312886
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=61
2025-10-21 19:24:26 +00:00
360dce8cd3 Accepting request 1307199 from devel:languages:python
- Update to 0.19.2
  * Fix list convertor with an empty list default factory.

OBS-URL: https://build.opensuse.org/request/show/1307199
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=28
2025-09-26 20:24:19 +00:00
Matthias Bach
56c52330ef Accepting request 1307002 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1307002
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=59
2025-09-24 20:24:10 +00:00
bfa8d76eb9 Accepting request 1306168 from devel:languages:python
- Update to 0.19.1
  * Ensure that Optional[list] values work correctly with callbacks.
  * Support typing.Literal to define a set of predefined choices.
  * Allow setting an environment variable to None in CliRunner.invoke.
- Update to 0.18.0
  * Ensure compatibility with Click 8.3.0 by restoring the original
    value_is_missing function.

OBS-URL: https://build.opensuse.org/request/show/1306168
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=27
2025-09-22 14:38:29 +00:00
Matthias Bach
19cb237f58 Accepting request 1306166 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1306166
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=57
2025-09-20 19:34:38 +00:00
c6387b7c8a Accepting request 1303004 from devel:languages:python
- Update to 0.17.4
  * Make sure rich.markup is imported when rendering help text.
- Update to 0.17.3
  * Allow annotated parsing with a subclass of Path.
  * Avoid printing default: None in the help section when using
    Rich.
  * Fix markdown formatting in --help output.
  * Lazy-load rich_utils to reduce startup time.
- Convert to libalternatives on SLE-16-based and newer systems
- Update to 0.16.1
  * Avoid printing additional output with no_args_is_help=True and
    Click 8.2.
- Update to 0.16.0
  * Add compatibility with Click 8.2.
- Remove support-click-8.2.patch as it is no longer needed.
- Add patch support-click-8.2.patch:
  * Support both click 8.1 and 8.2.
- Switch to autosetup macro.
- Update to 0.15.3
  * Ensure that autocompletion works for Path arguments/options.
  * Fix newline after header in help text.
- Update to 0.15.2
  * Allow custom styles for commands in help output.
  * Avoid the unnecessary import of typing_extensions in newer
    Python versions.
  * Fix shell completions for the fish shell.
- Update to 0.15.1
  * Deprecate shell_complete and continue to use autocompletion for
    CLI parameters.
- Update to 0.15.0
  * Add support for extending typer apps without passing a name,
    add commands to the top level.
  * Breaking change:  Remove auto naming of groups added via
    add_typer based on the group's callback function name.
- update to 0.13.1:
  * Remove Rich tags when showing completion text.
  * Render Rich markup as HTML in Markdown docs.
  * Support cp850 encoding for auto-completion in PowerShell.
  * Allow gettext translation of help message.
  * Fix printing HTML from Rich output. PR #1055 by @tiangolo.
  * Update markdown includes to use the new simpler format. PR
- update to 0.13.0:
  * Handle `KeyboardInterrupt` separately from other
    exceptions.
  * Update `launch` to not print anything when opening urls.
  * Show help items in order of definition.
  * Fix equality check for custom classes.
  * Allow colon in zsh autocomplete values and descriptions.
  * Deprecate support for `is_flag` and `flag_value`
    parameters.
  * Remove unused functionality from `_typing.py` file.
  * Fix typo in function name `_make_rich_text`.
- Switch PDM dependency from python3-pdm to python3-pdm-backend to
  account for changes in that package's structure.
- Update to upstream version 0.12.5
  * Unify the width of the Rich console for help and errors.
  * Improve assertion error message if a group is not a valid subclass.
  * Ensure rich_markup_mode=None disables Rich formatting.
- Update to upstream version 0.12.4
  * Fix support for UnionType (e.g. str | None) with Python 3.11.
  * Fix zsh autocompletion installation.
  * Fix usage of Annotated with future annotations in Python 3.7+.
  * Fix shell_complete not working for Arguments.
- Add conflict declaration with Erlang as both packages provide
  /usr/bin/typer
- Update to upstream version 0.12.3
  * Fix Rich formatting with no commands.
  * Improve column help display, ensure commands column width is
    the same on all panels.
  * Add support for an argument of type Optional[Tuple] and default
- Update to upstream version 0.12.1
  * The core functionality has been extracted into
    python-typer-slim.
  * The typer command is now provided as part of the main typer
    package.
  * Formerly optional dependencies required for full
    functionality are now automatically installed. If they are not
    required, the slim package can be used.
- Drop set-proper-pythonpath-for-tutorial-script-tests.patch as it
  is now applied in python-typer-slim.
- Update to upstream version 0.10.1
  * Internal and dependency changes
- Fix missing requirement specification on
  python-typing_extensions.
- Update to upstream version 0.10.0
  * Fix default value of None for CLI Parameters when the type is
    list | None and the default value is None.
  * Improve support for CLI translations using gettext.
  * Fix evaluating stringified annotations in Python 3.10.
  * Fix display of default value for Enum parameters inside of a
    list, include docs and tests.
  * Update type annotations for show_default parameter and update
    docs for setting a "Custom default string".
  * Add missing default_factory in Argument overloads.
  * Fix preserving case in enum values.
- Fix sle15_python_module_python being on wrong line post spec
  auto-format.
- add sle15_python_module_python
- Update to upstream version 0.9.0
  * Add support for PEP-593 Annotated for specifying options and
    arguments.
  * Add support for custom types and parsers.
- Drop patch run-subprocesses-with-correct-python.patch that got
  included upstream.
- Adapt set-proper-pythonpath-for-tutorial-script-tests.patch to
  also work for Python 3.11.
- Update to upstream version 0.7.0
  * Make typer.run() not add completion scripts by default, it only
    makes sense in installed apps.
  * Add support for Python 3.11.
- Update to upstream version 0.6.1
  * Adds deep integrations with Rich. If Rich is available, it will
    be used to show the content from --help options, validation
    errors, and even errors in apps.
  * Support for Rich Markup and Markdown in docstrings, CLI
    parameters, help, and epilog.
  * Fix type conversion for List and Tuple.
  * Fix context_settings for a Typer apps with a single command.
  * Fix setting FORCE_TERMINAL with colors.
- Refreshed patches
- Add run-subprocesses-with-correct-python.patch to ensure tests
  aren't accidentally running subprocesses using the wrong Python
  version.
- Add set-proper-pythonpath-for-tutorial-script-tests.patch to fix
  issue with build failing due to import failures.
- Update to upstream version 0.4.1
  * Fix import of get_terminal_size for Click 8.1.0 support.
- Switch from traditional setup.py installation to pyproject macros
  as upstream no longer ships its setup.py compability wrapper.
- Update to upstream version 0.4.0
  * Add support for Click 8 while keeping compatibility with
    Click 7.
- Remove basic-click8-compat.patch as Click 8 compatibility is now
  provided upstream.
- Resolve Typer no longer working since Click got bumped to version
  8.
  * This removes support for autocompletion.
- Add basic-click8-compat.patch
- Properly specify package group.
- Suppress false-positive detection of empty file in rpmlint.
- Properly declare minimum version requirement vs. python-click to
  avoid broken installation on Leap.
- Initial package release

OBS-URL: https://build.opensuse.org/request/show/1303004
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=26
2025-09-08 07:56:26 +00:00
Matthias Bach
44f56fd0df Accepting request 1303002 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1303002
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=55
2025-09-06 09:43:07 +00:00
81c5bfdefa Accepting request 1302029 from devel:languages:python
- Update to 0.17.3
  * Allow annotated parsing with a subclass of Path.
  * Avoid printing default: None in the help section when using
    Rich.
  * Fix markdown formatting in --help output.
  * Lazy-load rich_utils to reduce startup time.

OBS-URL: https://build.opensuse.org/request/show/1302029
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=25
2025-09-01 15:16:43 +00:00
Matthias Bach
35458261bd Accepting request 1302027 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1302027
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=53
2025-08-30 15:20:44 +00:00
d0a72dc7cc Accepting request 1301303 from devel:languages:python
- Convert to libalternatives on SLE-16-based and newer systems

OBS-URL: https://build.opensuse.org/request/show/1301303
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=24
2025-08-26 12:56:23 +00:00
19f90480a7 - Convert to libalternatives on SLE-16-based and newer systems
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=51
2025-08-25 14:26:09 +00:00
7b6200be80 Accepting request 1300456 from devel:languages:python
- Update to 0.16.1
  * Avoid printing additional output with no_args_is_help=True and
    Click 8.2.

OBS-URL: https://build.opensuse.org/request/show/1300456
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=23
2025-08-21 14:53:37 +00:00
Matthias Bach
52a490a898 Accepting request 1300403 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1300403
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=49
2025-08-20 07:02:42 +00:00
d5131515d2 Accepting request 1280711 from devel:languages:python
- Update to 0.16.0
  * Add compatibility with Click 8.2.
- Remove support-click-8.2.patch as it is no longer needed.

OBS-URL: https://build.opensuse.org/request/show/1280711
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=22
2025-05-31 17:14:19 +00:00
Matthias Bach
2857750a06 Accepting request 1280709 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1280709
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=47
2025-05-27 21:30:44 +00:00
b14873b8f0 Accepting request 1277916 from devel:languages:python
- Add patch support-click-8.2.patch:
  * Support both click 8.1 and 8.2.
- Switch to autosetup macro.

OBS-URL: https://build.opensuse.org/request/show/1277916
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=21
2025-05-23 12:27:18 +00:00
2418ce0638 - Add patch support-click-8.2.patch:
* Support both click 8.1 and 8.2.
- Switch to autosetup macro.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=45
2025-05-16 05:00:57 +00:00
6a49545665 Accepting request 1273509 from devel:languages:python
- Update to 0.15.3
  * Ensure that autocompletion works for Path arguments/options.
  * Fix newline after header in help text.

OBS-URL: https://build.opensuse.org/request/show/1273509
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=20
2025-04-30 17:02:56 +00:00
Matthias Bach
30d2a11025 Accepting request 1273507 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1273507
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=43
2025-04-29 18:28:18 +00:00
9d2f469a88 Accepting request 1249294 from devel:languages:python
- Update to 0.15.2
  * Allow custom styles for commands in help output.
  * Avoid the unnecessary import of typing_extensions in newer
    Python versions.
  * Fix shell completions for the fish shell.

OBS-URL: https://build.opensuse.org/request/show/1249294
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=19
2025-03-03 15:04:22 +00:00
Matthias Bach
590332348f OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=41 2025-02-28 17:47:07 +00:00
93ff328f5b Accepting request 1228371 from devel:languages:python
- Update to 0.15.1
  * Deprecate shell_complete and continue to use autocompletion for
    CLI parameters.
- Update to 0.15.0
  * Add support for extending typer apps without passing a name,
    add commands to the top level.
  * Breaking change:  Remove auto naming of groups added via
    add_typer based on the group's callback function name.

OBS-URL: https://build.opensuse.org/request/show/1228371
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=18
2024-12-05 16:05:25 +00:00
Matthias Bach
8ee40ac583 Accepting request 1228369 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1228369
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=39
2024-12-04 21:10:53 +00:00
Matthias Bach
d4b2011afd Accepting request 1228113 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1228113
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=38
2024-12-03 21:35:10 +00:00
f8ec2ddf60 Accepting request 1225371 from devel:languages:python
- update to 0.13.1:
  * Remove Rich tags when showing completion text.
  * Render Rich markup as HTML in Markdown docs.
  * Support cp850 encoding for auto-completion in PowerShell.
  * Allow gettext translation of help message.
  * Fix printing HTML from Rich output. PR #1055 by @tiangolo.
  * Update markdown includes to use the new simpler format. PR
- update to 0.13.0:
  * Handle `KeyboardInterrupt` separately from other
    exceptions.
  * Update `launch` to not print anything when opening urls.
  * Show help items in order of definition.
  * Fix equality check for custom classes.
  * Allow colon in zsh autocomplete values and descriptions.
  * Deprecate support for `is_flag` and `flag_value`
    parameters.
  * Remove unused functionality from `_typing.py` file.
  * Fix typo in function name `_make_rich_text`.

OBS-URL: https://build.opensuse.org/request/show/1225371
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=17
2024-11-21 14:13:25 +00:00
238c32f933 - update to 0.13.1:
* Remove Rich tags when showing completion text.
  * Render Rich markup as HTML in Markdown docs.
  * Support cp850 encoding for auto-completion in PowerShell.
  * Allow gettext translation of help message.
  * Fix printing HTML from Rich output. PR #1055 by @tiangolo.
  * Update markdown includes to use the new simpler format. PR
- update to 0.13.0:
  * Handle `KeyboardInterrupt` separately from other
    exceptions.
  * Update `launch` to not print anything when opening urls.
  * Show help items in order of definition.
  * Fix equality check for custom classes.
  * Allow colon in zsh autocomplete values and descriptions.
  * Deprecate support for `is_flag` and `flag_value`
    parameters.
  * Remove unused functionality from `_typing.py` file.
  * Fix typo in function name `_make_rich_text`.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=36
2024-11-20 17:26:51 +00:00
19af8e0e25 Accepting request 1219467 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1219467
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=16
2024-10-30 18:26:00 +00:00
Matthias Bach
444ae6976b - Switch PDM dependency from python3-pdm to python3-pdm-backend to
account for changes in that package's structure.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=34
2024-09-27 15:43:30 +00:00
bf0cdac455 Accepting request 1197927 from devel:languages:python
- Update to upstream version 0.12.5
  * Unify the width of the Rich console for help and errors.
  * Improve assertion error message if a group is not a valid subclass.
  * Ensure rich_markup_mode=None disables Rich formatting.

OBS-URL: https://build.opensuse.org/request/show/1197927
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=15
2024-09-01 17:22:08 +00:00
Matthias Bach
334f75d95a Accepting request 1197516 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1197516
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=32
2024-08-29 18:53:05 +00:00
1c0526f12a Accepting request 1194595 from devel:languages:python
- Update to upstream version 0.12.4
  * Fix support for UnionType (e.g. str | None) with Python 3.11.
  * Fix zsh autocompletion installation.
  * Fix usage of Annotated with future annotations in Python 3.7+.
  * Fix shell_complete not working for Arguments.

OBS-URL: https://build.opensuse.org/request/show/1194595
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=14
2024-08-19 21:44:38 +00:00
Matthias Bach
f2c4034245 Accepting request 1194453 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1194453
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=30
2024-08-17 10:35:36 +00:00
619c69d1d5 Accepting request 1167138 from devel:languages:python
- Add conflict declaration with Erlang as both packages provide
  /usr/bin/typer

- Update to upstream version 0.12.3
  * Fix Rich formatting with no commands.
  * Improve column help display, ensure commands column width is
    the same on all panels.
  * Add support for an argument of type Optional[Tuple] and default

- Update to upstream version 0.12.1
  * The core functionality has been extracted into
    python-typer-slim.
  * The typer command is now provided as part of the main typer
    package.
  * Formerly optional dependencies required for full
    functionality are now automatically installed. If they are not
    required, the slim package can be used.
- Drop set-proper-pythonpath-for-tutorial-script-tests.patch as it
  is now applied in python-typer-slim.

OBS-URL: https://build.opensuse.org/request/show/1167138
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=13
2024-04-14 09:54:42 +00:00
Matthias Bach
ac5e86e208 - Add conflict declaration with Erlang as both packages provide
/usr/bin/typer

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=28
2024-04-12 15:31:45 +00:00
Matthias Bach
e794a5738a - Update to upstream version 0.12.3
* Fix Rich formatting with no commands.
  * Improve column help display, ensure commands column width is
    the same on all panels.
  * Add support for an argument of type Optional[Tuple] and default

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=27
2024-04-09 20:31:04 +00:00
Matthias Bach
ea14aa7ca0 Accepting request 1165971 from home:theMarix:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1165971
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=26
2024-04-07 15:06:09 +00:00
04b54f3591 Accepting request 1163546 from devel:languages:python
- Update to upstream version 0.10.1
  * Internal and dependency changes
- Fix missing requirement specification on
  python-typing_extensions.

OBS-URL: https://build.opensuse.org/request/show/1163546
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=12
2024-04-02 14:40:20 +00:00
Matthias Bach
385d4df866 - Update to upstream version 0.10.1
* Internal and dependency changes
- Fix missing requirement specification on
  python-typing_extensions.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=24
2024-03-29 11:31:28 +00:00
9798750e0f Accepting request 1161563 from devel:languages:python
- Update to upstream version 0.10.0
  * Fix default value of None for CLI Parameters when the type is
    list | None and the default value is None.
  * Improve support for CLI translations using gettext.
  * Fix evaluating stringified annotations in Python 3.10.
  * Fix display of default value for Enum parameters inside of a
    list, include docs and tests.
  * Update type annotations for show_default parameter and update
    docs for setting a "Custom default string".
  * Add missing default_factory in Argument overloads.
  * Fix preserving case in enum values.

OBS-URL: https://build.opensuse.org/request/show/1161563
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=11
2024-03-26 18:26:28 +00:00
Matthias Bach
2571eb9d8f - Update to upstream version 0.10.0
* Fix default value of None for CLI Parameters when the type is
    list | None and the default value is None.
  * Improve support for CLI translations using gettext.
  * Fix evaluating stringified annotations in Python 3.10.
  * Fix display of default value for Enum parameters inside of a
    list, include docs and tests.
  * Update type annotations for show_default parameter and update
    docs for setting a "Custom default string".
  * Add missing default_factory in Argument overloads.
  * Fix preserving case in enum values.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=22
2024-03-25 21:25:26 +00:00
31b38c70e1 Accepting request 1118386 from devel:languages:python
- Fix sle15_python_module_pythons being on the wrong line post spec
  auto-format.

OBS-URL: https://build.opensuse.org/request/show/1118386
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=10
2023-10-18 19:25:40 +00:00
Matthias Bach
e11eb089ee Fix location of sle15_python_module_pythons for real
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=20
2023-10-17 22:04:00 +00:00
Matthias Bach
29e7d7c157 - Fix sle15_python_module_python being on wrong line post spec
auto-format.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=19
2023-10-17 19:09:33 +00:00
e3deca379b Accepting request 1118265 from devel:languages:python
- add sle15_python_module_python

OBS-URL: https://build.opensuse.org/request/show/1118265
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-typer?expand=0&rev=9
2023-10-17 18:25:08 +00:00
Matthias Bach
114b6ae5d0 - add sle15_python_module_python
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typer?expand=0&rev=17
2023-10-17 07:02:49 +00:00