Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python312-fire-0.7.0-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python312-fire Distribution: openSUSE:Factory:zSystems
Version: 0.7.0 Vendor: openSUSE
Release: 1.1 Build date: Thu Oct 31 15:31:28 2024
Group: Unspecified Build host: reproducible
Size: 920842 Source RPM: python-fire-0.7.0-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/google/python-fire
Summary: A library for automatically generating command line interfaces
Python Fire is a library for automatically generating command line
interfaces (CLIs) from a Python object.

Provides

Requires

License

Apache-2.0

Changelog

* Thu Oct 31 2024 pgajdos@suse.com
  - version update to 0.7.0
    * This release is the first to drop Python 2 support. For Python 2 users, use <= 0.6.0.
    * CI improvements from @Borda including dependabot and an expanded build matrix
    * adding GH dependabot by @Borda in #432
    * Bump the pip group with 2 updates by @dependabot in #491
    * Update hypothesis requirement from <6.62.0 to <6.100.0 in /.github/scripts by @dependabot in #492
    * #444: Removed pipes dependency by @BasedDepartment1 in #447
    * Update termcolor requirement from <2.2.0 to <2.5.0 in /.github/scripts by @dependabot in #493
    * Update mock requirement from <5.0.0 to <6.0.0 in /.github/scripts by @dependabot in #495
    * Update pytest requirement from <=7.2.1 to <=8.1.1 in /.github/scripts by @dependabot in #494
    * Update pytest-runner requirement from <6.0.0 to <7.0.0 in /.github/scripts by @dependabot in #496
    * fix typo in dependabot group by @Borda in #497
    * Update setuptools requirement from <=69.1.1 to <=69.2.0 in /.github/scripts by @dependabot in #500
    * Update hypothesis requirement from <6.100.0 to <6.101.0 in /.github/scripts by @dependabot in #506
    * Update levenshtein requirement from <=0.25.0 to <=0.25.1 in /.github/scripts by @dependabot in #510
    * Use ast.Constant for recent Python versions by @wdhongtw in #526
    * Remove future imports now that we've dropped support for Python 2 by @dbieber in #539
    * remove six: Replace six.string_types and six.integer_types, etc. by @dbieber in #541
    * Remove sys.version_info checks by @dbieber in #542
    * Update setuptools requirement from <=69.2.0 to <=75.1.0 in /.github/scripts by @dependabot in #540
    * Simplify requirements.txt by assuming Python 3 by @dbieber in #543
    * Update hypothesis requirement from <6.101.0 to <6.113.0 in /.github/scripts by @dependabot in #544
    * Remove mock in favor of unittest.mock by @dbieber in #545
    * Update pytest requirement from <=8.1.1 to <=8.3.3 in /.github/scripts by @dependabot in #546
    * Update label used by dependabot by @dbieber in #547
    * Update levenshtein requirement from <=0.25.1 to <=0.26.0 in /.github/scripts by @dependabot in #548
    * Upgrade pylint version by @dbieber in #549
    * Run github action on pull_request by @dbieber in #550
    * Add current system MSYS check by @bonfy in #278
    * Remove .format in favor of f-strings by @dbieber in #551
    * Remove six from console, eliminates six entirely by @dbieber in #552
    * Move asyncio imports and update docs by @dbieber in #553
    * Include Python 3.13 in github actions by @dbieber in #554
    * Continue upgrade of codebase to Python 3 by @dbieber in #556
    * update required Python 3.7 in setup.py by @Borda in #555
    * Lint improvements and type safety by @dbieber in #558
    * ci: expand build matrix for major OS by @Borda in #490
    * Replace Python 2 type hints with real type annotations by @dbieber in #559
  - Replace upstreamed patch:
    - python-fire-no-mock.patch
    - support-python-311.patch
* Tue Feb 07 2023 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 0.5.0:
    * Support for custom serializers with fire.Fire(serializer=your_serializer)
    * Auto-generated help text now shows short arguments (e.g. -a) when
      appropriate
    * Default values are now shown in help for kwonly arguments
    * Completion script fix where previously completions might not show at all
  - Refresh python-fire-no-mock.patch
  - Add patch support-python-311.patch:
    * Support Python 3.11
* Wed Mar 16 2022 pgajdos@suse.com
  - do not require python-mock for build
  - added patches
    fix https://github.com/google/python-fire/pull/265/files
    + python-fire-no-mock.patch
* Fri Mar 12 2021 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 0.4.0:
    * Support for Python 3.8 and Python 3.9
    * Argument types and defaults appear in help text
    * Support for asyncio coroutines
    * Support for modules and Python files with python -m fire
    * Keyword argument info from rst docstrings appears in help text
    * Bug fix for missing parts of multiline argument descriptions from
      Google and Numpy style docstrings.
    * Support functions even when they override getattr in non-standard ways.
  - Drop patch subpoint-usage-test.patch, which is no longer required.
* Thu Sep 17 2020 Dirk Mueller <dmueller@suse.com>
  - update to 0.3.1:
    * Removes preexec_fn from pager subprocess cal
* Thu Apr 02 2020 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 0.3.0:
    * Use Fire on third-party code without making any code changes:
      python -m fire <module>
    * Docstring parsing fix for all lines are blank f01aad3
    * Improved parsing of numpy-style docstrings
    * #187 Expose built-in functions from the standard library (e.g. sin, cos)
    * #149 Support objects implementing __getattr__
    * #205 Fix ctrl-C handling in help screens
    * Support functools.wraps and lru_cache decorated functions
    * Better support for objects with properties
    * Objects with custom __str__ are now treated as Values. E.g. If such an
      object appears in a dict, the dict will still print in line-by-line mode
      rather than showing a help screen by default.
    * Formatting on Windows works properly now
* Tue Oct 15 2019 Steve Kowalik <steven.kowalik@suse.com>
  - Add subpoint-usage-test.patch, which will change the subpoint usage string
    if running under Python 3.8.
* Fri Sep 13 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 0.2.1:
    * Improves robustness of docstring parser in the face of unexpected format docstrings. #183
* Tue Jul 30 2019 pgajdos@suse.com
  - version update to 0.2.0
    * Help and usage screens
    * Help screens now have a man-page appearance and are shown with less-style pagination. Usage screens are shown when a user-error is encountered. The help and usage screens are considerably cleaner than the default output in previous versions of Fire.
    * Custom serialization
    * If you define a custom __str__ method on an object, that will be used to serialize the object when it is the final result of a Fire command. This means better support for numpy arrays, and better support for custom types.
    * Docstring parsing
    * Notably, docstrings are parsed in order to determine the descriptions to use for arguments in the help screens. We largely support (but not fully) Google, numpy, and RST style docstrings. These are the three most common styles of docstring used in Python code.
    * Access --help naturally
    * You no longer need to separate --help from your command with an extra --. Simply running command -h or command --help will give help, provided there isn't an argument named help in your component.
    * NamedTuples can be indexed both by their field names and by their indexes.
    * Callable objects can both be called, and their members can be accessed.
    * You must use flag syntax to call a callable object; you cannot pass their arguments positionally.
    * Single-hyphen flags are supported
    * You can now specify -flag instead of --flag if preferred. Both work.
    * Short-flags are permitted when their use is unambiguous
    * E.g. if your function has argument alpha, then you can specify its value with -a.
    * Fish completion support
  - deleted patches
    - fix-issue-164.patch (upstreamed)
* Fri Mar 08 2019 Matej Cepl <mcepl@suse.com>
  - Add fix-issue-164.patch patch to fix gh#google/python-fire#164
    and we can run whole test suite.

Files

/usr/lib/python3.12/site-packages/fire
/usr/lib/python3.12/site-packages/fire-0.7.0-py3.12.egg-info
/usr/lib/python3.12/site-packages/fire-0.7.0-py3.12.egg-info/PKG-INFO
/usr/lib/python3.12/site-packages/fire-0.7.0-py3.12.egg-info/SOURCES.txt
/usr/lib/python3.12/site-packages/fire-0.7.0-py3.12.egg-info/dependency_links.txt
/usr/lib/python3.12/site-packages/fire-0.7.0-py3.12.egg-info/requires.txt
/usr/lib/python3.12/site-packages/fire-0.7.0-py3.12.egg-info/top_level.txt
/usr/lib/python3.12/site-packages/fire/__init__.py
/usr/lib/python3.12/site-packages/fire/__main__.py
/usr/lib/python3.12/site-packages/fire/__pycache__
/usr/lib/python3.12/site-packages/fire/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/__main__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/__main__.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/completion.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/completion.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/completion_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/completion_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/core.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/core.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/core_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/core_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/custom_descriptions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/custom_descriptions.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/custom_descriptions_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/custom_descriptions_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/decorators.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/decorators.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/decorators_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/decorators_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/docstrings.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/docstrings.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/docstrings_fuzz_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/docstrings_fuzz_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/docstrings_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/docstrings_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/fire_import_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/fire_import_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/fire_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/fire_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/formatting.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/formatting.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/formatting_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/formatting_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/formatting_windows.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/formatting_windows.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/helptext.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/helptext.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/helptext_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/helptext_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/inspectutils.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/inspectutils.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/inspectutils_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/inspectutils_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/interact.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/interact.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/interact_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/interact_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/main_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/main_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/parser.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/parser.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/parser_fuzz_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/parser_fuzz_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/parser_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/parser_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components_bin.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components_bin.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components_py3.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components_py3.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/test_components_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/testutils.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/testutils.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/testutils_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/testutils_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/trace.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/trace.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/trace_test.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/trace_test.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/value_types.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/__pycache__/value_types.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/completion.py
/usr/lib/python3.12/site-packages/fire/completion_test.py
/usr/lib/python3.12/site-packages/fire/console
/usr/lib/python3.12/site-packages/fire/console/__init__.py
/usr/lib/python3.12/site-packages/fire/console/__pycache__
/usr/lib/python3.12/site-packages/fire/console/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_attr.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_attr.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_attr_os.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_attr_os.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_io.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_io.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_pager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/console_pager.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/encoding.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/encoding.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/files.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/files.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/platforms.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/platforms.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/text.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/fire/console/__pycache__/text.cpython-312.pyc
/usr/lib/python3.12/site-packages/fire/console/console_attr.py
/usr/lib/python3.12/site-packages/fire/console/console_attr_os.py
/usr/lib/python3.12/site-packages/fire/console/console_io.py
/usr/lib/python3.12/site-packages/fire/console/console_pager.py
/usr/lib/python3.12/site-packages/fire/console/encoding.py
/usr/lib/python3.12/site-packages/fire/console/files.py
/usr/lib/python3.12/site-packages/fire/console/platforms.py
/usr/lib/python3.12/site-packages/fire/console/text.py
/usr/lib/python3.12/site-packages/fire/core.py
/usr/lib/python3.12/site-packages/fire/core_test.py
/usr/lib/python3.12/site-packages/fire/custom_descriptions.py
/usr/lib/python3.12/site-packages/fire/custom_descriptions_test.py
/usr/lib/python3.12/site-packages/fire/decorators.py
/usr/lib/python3.12/site-packages/fire/decorators_test.py
/usr/lib/python3.12/site-packages/fire/docstrings.py
/usr/lib/python3.12/site-packages/fire/docstrings_fuzz_test.py
/usr/lib/python3.12/site-packages/fire/docstrings_test.py
/usr/lib/python3.12/site-packages/fire/fire_import_test.py
/usr/lib/python3.12/site-packages/fire/fire_test.py
/usr/lib/python3.12/site-packages/fire/formatting.py
/usr/lib/python3.12/site-packages/fire/formatting_test.py
/usr/lib/python3.12/site-packages/fire/formatting_windows.py
/usr/lib/python3.12/site-packages/fire/helptext.py
/usr/lib/python3.12/site-packages/fire/helptext_test.py
/usr/lib/python3.12/site-packages/fire/inspectutils.py
/usr/lib/python3.12/site-packages/fire/inspectutils_test.py
/usr/lib/python3.12/site-packages/fire/interact.py
/usr/lib/python3.12/site-packages/fire/interact_test.py
/usr/lib/python3.12/site-packages/fire/main_test.py
/usr/lib/python3.12/site-packages/fire/parser.py
/usr/lib/python3.12/site-packages/fire/parser_fuzz_test.py
/usr/lib/python3.12/site-packages/fire/parser_test.py
/usr/lib/python3.12/site-packages/fire/test_components.py
/usr/lib/python3.12/site-packages/fire/test_components_bin.py
/usr/lib/python3.12/site-packages/fire/test_components_py3.py
/usr/lib/python3.12/site-packages/fire/test_components_test.py
/usr/lib/python3.12/site-packages/fire/testutils.py
/usr/lib/python3.12/site-packages/fire/testutils_test.py
/usr/lib/python3.12/site-packages/fire/trace.py
/usr/lib/python3.12/site-packages/fire/trace_test.py
/usr/lib/python3.12/site-packages/fire/value_types.py
/usr/share/licenses/python312-fire
/usr/share/licenses/python312-fire/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Jan 4 23:43:41 2025