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

python312-pdm-2.12.4-1.2 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python312-pdm Distribution: openSUSE:Factory:zSystems
Version: 2.12.4 Vendor: openSUSE
Release: 1.2 Build date: Wed Feb 28 14:23:05 2024
Group: Unspecified Build host: reproducible
Size: 2277722 Source RPM: python-pdm-2.12.4-1.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/pdm-project/pdm/
Summary: Python Development Master
PDM is a modern Python package manager with PEP 582 support. It
installs and manages packages in a similar way to npm that
doesn't need to create a virtualenv at all!

Provides

Requires

License

MIT

Changelog

* Wed Feb 28 2024 Markéta Machová <mmachova@suse.com>
  - Update to 2.12.4
    * Officially drop the support for Python 3.7.
    * Allow exporting current project as editable dependency with pdm export.
    * Use ==major.minor.* as default requires python for application projects.
    * We now use the package-type field in the tool.pdm table to differentiate
      between library and application projects.
    * pdm lock now supports --update-reuse option to keep the pinned versions
      in the lockfile if possible.
    * Introduce a new lock strategy inherit_metadata to inherit and merge
      markers from parent requirements. This is enabled by default when
      creating a new lockfile.
    * Allow excluding packages from the lockfile via tool.pdm.resolution.excludes
      setting, the dependencies will also be skipped.
    * Rename --no-lock option to --frozen-lockfile.
    * Add --no-markers to export command to exclude markers from the output.
    * Change the warning category emitted by deprecated_warning() to PDMDeprecationWarning.
    * Rename the preferred_pins argument of provider classes to locked_candidates,
      and deprecate the old name.
    * Use env PDM_NO_EDITABLE as the default value for --no-editable option.
* Fri Jan 05 2024 Dirk Müller <dmueller@suse.com>
  - remove unnecessary pdm-pep517
* Wed Dec 13 2023 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 2.10.4:
    * Do not detect as requirements.txt if the file is a python script.
    * Provide information of the original line when parsing requirement fails.
    * Resolve `-r` requirements paths relative to the requirement file they
      are specified in.
    * Updating package now overwrites the old files instead of removing
      before installing.
    * Improve the error message when a specific package can't be found in the
      lockfile.
    * Add lock option to resolve direct dependencies to the minimal versions
      available.
    * Fix a bug that build requirements are installed into wrong location
      when using `--venv` option.
    * Officially supports python3.12 now.
    * Fix an issue that `--no-lock` option doesn't work as expected. Also
      support `--no-lock` option for `add`, `remove` and `update` commands.
    * Use `findpython` to find pythons with the spec given by the user.
    * Support passing filter patterns as positional arguments to `pdm list`
      command.  Add `--tree` as an alias and preferred name of `--graph` option.
    * Switch to truststore by default.
    * Allow `pdm run` to run a script with the relative or absolute path.
    * Fix the compatibility issue with copier 8.0+.
    * Makes `comarable_version("1.2.3+local1") == Version("1.2.3")`.
    * Default behavior for pdm venv activate when shell detection fails.
    * Handle parsing errors when converting from poetry-style metadata.
    * Remove the legacy build backend `pdm-pep517`.
    * Fix the comparison of the candidate keys in the lockfile.
    * Don't update `pyproject.toml` if both `--unconstrained` and `--dry-run`
      are passed to `pdm update`.
    * Skip sources with empty URL when merging sources.
    * Support target python with other architectures.
    * Allow to change the python providers from the config.
    * Fix a bug that egg-info directories are not removed completely, leading
      to incomplete distribution.
    * Skip distributions with wrong package meta information and duplicate path.
    * Avoid mistakenly passing command-line arguments while testing.
    * Fix a bug that lockfile groups are overwritten when running locking in
      preceding step of `pdm install`.
    * Tolerate and actually ignore the local versions in version specifiers.
    * Fix a bug that shared cache cannot support overlapping namespace packages.
    * Fix a bug that `pdm install --plugins` can't install self.
    * Fix a cache collision between named requirements and url requirements.
    * `pdm init` now accepts a template argument to initialize project from a
      built-in or Git template.
    * Replace the `DeprecationWarning` with `FutureWarning` for better exposure.
    * Serve `install-pdm.py` and its checksum file on the docs site.
    * Add support for using `truststore` as the SSL backend. This only works
      on Python 3.10 or newer.
    * Fix the breaking change by adding the functions back to the old location
      with deprecation warnings.
    * Fix the duplicate entries in the output of `pdm self list`.
    * Disable hashes caching for local files.
    * Populate the `url` field when converting requirements from a
      Pipfile-style file requirement.
    * Fix a bug that empty source tables in configuration files causes errors
      when running pdm commands.
    * Fix a resolution conflict caused by requested yanked version also in
      other transitive dependencies.
* Thu Jun 22 2023 Andreas Schneider <asn@cryptomilk.org>
  - Fix building with Python 3.9
* Mon Jun 19 2023 Dirk Müller <dmueller@suse.com>
  - Update to version 2.7.4
    * Fix the warning of extras not found due to extra names not normalized.
      [#2006]
    * Pop up a warning when the deprecated parser argument is passed to
      BaseCommand.__init__() method. #2007
    * Fix a bug that merging settings with AoTs causing a failure. #2011
* Thu Apr 06 2023 Steve Kowalik <steven.kowalik@suse.com>
  - Remove pep517 requirement.
* Tue Apr 04 2023 Daniel Garcia <daniel.garcia@suse.com>
  - Remove python-installer version limit in requires
  - Disable broken tests
  - Update to 2.4.9:
    * Fix a bug of synchronization of not considering the revision of
      VCS requirement in comparison. #1762
    * Improve the error message when parsing an invalid requirement
      string. #1765
    * Fix a bug that pdm export output doesn't include the extras of the
      dependencies. #1767
  - Release v2.4.8 (2023-03-09)
    * Fix the resolution order to prefer the packages causing the
      conflict. This can make the resolution reach a solution faster.
      [#1752]
    * Fix a bug that embedded credentials in URL are not respected for
      the default source. #1757
  - Release v2.4.7 (2023-03-02)
    * Abort if lockfile isn't generated when executing pdm export. #1730
    * Ignore venv.prompt configuration when using conda as the backend.
      [#1734]
    * Fix a bug of finding local packages in the parent folder when it
      exists in the current folder. #1736
    * Ensure UTF-8 encoding when generating README.md. #1739
    * Fix a bug of show command not showing metadata of the current
      project. #1740
    * Replace . with - when normalizing package name. #1745
    * Support using pdm venv activate without specifying env_name to
      activate in project venv created by conda #1735
  - Release v2.4.6 (2023-02-20)
    * Fix a resolution failure when the project has cascading relative
      path dependencies. #1702
    * Don't crash when trying to update the shebang in a binary script.
      [#1709]
    * Handle the legacy specifiers that is unable to parse with
      packaging>22.0. #1719
    * Fix the setup.py parser to ignore the expressions unable to parse
      as a string. This is safe for initializing a requirement. #1720
    * Fix a bug converting from flit metadata when the source file can't
      be found. #1726
    * Add config example for Emacs using eglot + pyright #1721
    * Use ruff as the linter. #1715
    * Document installation via asdf. #1725
  - Release v2.4.5 (2023-02-10)
    * Fix a bug that built wheels are prioritized over source
      distributions with higher version number. #1698
  - Release v2.4.4 (2023-02-10)
    * Add more intuitive error message when the requires-python doesn't
      work for all dependencies. #1690
    * Prefer built distributions when finding packages for metadata
      extraction. #1535
  - Release v2.4.3 (2023-02-06)
    * Allow creating venv in project forcely if it already exists. #1666
    * Always ignore remembered selection in pdm init. #1672
    * Fix the fallback build backend to pdm-pep517 instead of
      setuptools. #1658
    * Eliminate the deprecation warnings from importlib.resources. #1660
    * Don't crash when failed to get the latest version of PDM for
      checking update. #1663
    * Fix the priorities of importable formats to make sure the correct
      format is used. #1669
    * Import editable requirements into dev dependencies. #1674
  - Release v2.4.2 (2023-01-31)
    * Skip some tests on packaging < 22. #1649
    * Fix a bug that sources from the project config are not loaded. #1651
    * Set VIRTUAL_ENV in pdm run. #1652
  - Release v2.4.1 (2023-01-28)
    * Add proper display for the extra pypi sources in pdm config. #1622
    * Support running python scripts without prefixing with python. #1626
    * Ignore the python requirement for overriden packages. #1575
    * Fix the wildcards in requirement specifiers to make it pass the
      new parser of packaging>=22. #1619
    * Add the missing subdirectory attribute to the lockfile entry.
      [#1630]
    * Fix a bug that VCS locks don't update when the rev part changes.
      [#1640]
    * Redirect the spinner output to stderr. #1646
    * Ensure the destination directory exists before building the
      packages. #1647
  - Release v2.4.0 (2023-01-12)
    * Support multiple PyPI indexes in the configuration. They will be
      tried after the sources in pyproject.toml. #1310
    * Accept yanked versions when the requirement version is pinned.
      [#1575]
    * Expose PDM fixtures as a pytest plugin pdm.pytest for plugin
      developers. #1594
    * Show message in the status when fetching package hashes. Fetch
      hashes from the JSON API response as well. #1609
    * Mark pdm.lock with an @generated comment. #1611
    * Exclude site-packages for symlinks of the python interpreter as
      well. #1598
    * Fix a bug that error output can't be decoded correctly on Windows.
      [#1602]
  - Release v2.3.4 (2022-12-27)
    * Detect PDM inside a zipapp and disable some functions. #1578
    * Don't write sitecustomize to the home directory if it exists in
      the filesystem(not packed in a zipapp). #1572
    * Fix a bug that a directory is incorrectly marked as to be deleted
      when it contains symlinks. #1580
* Tue Dec 20 2022 Daniel Garcia <daniel.garcia@suse.com>
  - Add missing dependency python-pyproject-hooks
* Mon Dec 19 2022 Dirk Müller <dmueller@suse.com>
  - update to 2.3.3:
    * Allow relative paths in `build-system.requires`, since `build` and
      `hatch` both support it. Be aware it is not allowed in the standard.
    * Strip the local part when building a specifier for comparison with the
      package version. This is not permitted by PEP 508 as implemented by
      `packaging 22.0`.
    * Update the version for check_update after self update
    * Fix the matching problem of packages in the lockfile.
    * Exclude `package==22.0` from the dependencies to avoid some breakages to
      the end users. #1568
    * Fix an installation failure when the RECORD file contains commas in the
      file path. #1010
    * Fallback to `pdm.pep517` as the metadata transformer for unknown custom
      build backends. #1546
    * Fix a bug that Ctrl + C kills the python interactive session instead of
      clearing the current line. #1547
    * Fix a bug with egg segment for local dependency #1552
    * Update `installer` to `0.6.0`. #1550
    * Update minimum version of `unearth` to `0.6.3` and test against
      `packaging==22.0`. #1555
    * Fix a resolution loop issue when the current project depends on itself
      and it uses the dynamic version from SCM. #1541
    * Don't give duplicate results when specifying a relative path for `pdm
      use`. #1542
    * Beautify the error message of build errors. Default to showing the last
      10 lines of the build output. #1491
    * Rename the `tool.pdm.overrides` table to
      `tool.pdm.resolution.overrides`. The old name is deprecated at the same
      time. #1503
    * Add backend selection and `--backend` option to `pdm init` command,
      users can choose a favorite backend from `setuptools`, `flit`,
      `hatchling` and `pdm-pep517`(default), since they all support PEP 621
      standards. #1504
    * Allows specifying the insertion position of user provided arguments in
      scripts with the `{args[:default]}` placeholder. #1507
    * The local package is now treated specially during installation and
      locking. This means it will no longer be included in the lockfile, and
      should never be installed twice even when using nested extras. This will
      ensure the lockdown stays relevant when the version changes. #1481
    * Fix the version diff algorithm of installed packages to consider local
      versions as compatible. #1497
    * Fix the confusing message when detecting a Python interpreter under
      `python.use_venv=False` #1508
    * Fix the test failure with the latest `findpython` installed. #1516
    * Fix the module missing error of pywin32 in a virtualenv with
      `install.cache` set to `true` and caching method is `pth`. #863
    * Drop the dependency `pdm-pep517`. #1504
    * Replace `pep517` with `pyproject-hooks` because of the rename. #1528
    * Remove the support for exporting the project file to a `setup.py`
      format, users are encouraged to migrate to the PEP 621 metadata. #1504
  - drop findpython-022.patch (upstream)
* Wed Nov 16 2022 Matej Cepl <mcepl@suse.com>
  - Add findpython-022.patch to make package work with findpython
    0.2.2 (from gh#pdm-project/pdm#1516).
* Tue Nov 15 2022 Matej Cepl <mcepl@suse.com>
  - Skip failing test (gh#pdm-project/pdm#1516).
* Wed Nov 09 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to v2.2.1
    Features & Improvements#
    * Make sitecustomize.py respect the PDM_PROJECT_MAX_DEPTH environment variable #1471
    Bug Fixes#
    * Fix the comparison of python_version in the environment marker. When the version contains only one digit, the result was incorrect. #1484
  - Update to v2.2.0
    Features & Improvements#
    * Add venv.prompt configuration to allow customizing prompt when a virtualenv is activated #1332
    * Allow the use of custom CA certificates per publish repository using ca_certs or from the command line via pdm publish --ca-certs <path> .... #1392
    * Rename the plugin command to self, and it can not only manage plugins but also all dependencies. Add a subcommand self update to update PDM itself. #1406
    * Allow pdm init to receive a Python path or version via --python option. #1412
    * Add a default value for requires-python when importing from other formats. #1426
    * Use pdm instead of pip to resolve and install build requirements. So that PDM configurations can control the process. #1429
    * Customizable color theme via pdm config command. #1450
    * A new pdm lock --check flag to validate whether the lock is up to date. #1459
    * Add both option and config item to ship pip when creating a new venv. #1463
    * Issue warning and skip the requirement if it has the same name as the current project. #1466
    * Enhance the pdm list command with new formats: --csv,--markdown and add options --fields,--sort to control the output contents. Users can also include
      licenses in the --fields option to display the package licenses. #1469
    * A new pre-commit hook to run pdm lock --check in pre-commit. #1471
    Bug Fixes#
    * Fix the issue that relative paths don't work well with --project argument. #1220
    * It is now possible to refer to a package from outside the project with relative paths in dependencies. #1381
    * Ensure pypi.[ca,client]_cert[s] config items are passed to distribution builder install steps to allow for custom PyPI index sources with
      self signed certificates. #1396
    * Fix a crash issue when depending on editable packages with extras. #1401
    * Do not save the python path when using non-interactive mode in pdm init. #1410
    * Fix the matching of python* command in pdm run. #1414
    * Show the Python path, instead of the real executable, in the Python selection menu. #1418
    * Fix the HTTP client of package publishment to prompt for password and read PDM configurations correctly. #1430
    * Ignore the unknown fields when constructing a requirement object. #1445
    * Fix a bug of unrelated candidates being fetched if the requirement is matching wildcard versions(e.g. ==1.*). #1465
    * Use importlib-metadata from PyPI for Python < 3.10. #1467
    Documentation#
    * Clarify the difference between a library and an application. Update the guide of multi-stage docker build. #1371
    * Removals and Deprecations#
    * Remove all top-level imports, users should import from the submodules instead. #1404
    * Remove the usages of old config names deprecated since 2.0. #1422
    * Remove the deprecated color functions, use rich's console markup instead. #1452
* Wed Oct 05 2022 Daniel Garcia <daniel.garcia@suse.com>
  - Update to v2.1.5
    * Ensure pypi.[ca,client]_cert[s] config items are passed to distribution
      builder install steps to allow for custom PyPI index sources with self
      signed certificates. #1396
    * Fix a crash issue when depending on editable packages with extras. #1401
    * Do not save the python path when using non-interactive mode in pdm init.
      [#1410]
    * Restrict importlib-metadata (<5.0.0) for Python <3.8 #1411
* Tue Oct 04 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to v2.1.4 (2022-09-17)
    Bug Fixes
    Fix a lock failure when depending on self with URL requirements. #1347
    Ensure list to concatenate args for composite scripts. #1359
    Fix an error in pdm lock --refresh if some packages has URLs. #1361
    Fix unnecessary package downloads and VCS clones for certain commands. #1370
    Fix a conversion error when converting a list of conditional dependencies from a Poetry format. #1383
    Documentation
    Adds a section to the docs on how to correctly work with PDM and version control systems. #1364
  - Update to v2.1.3 (2022-08-30)
    Features & Improvements
    When adding a package to (or removing from) a group, enhance the formatting of the group name in the printed message. #1329
    Bug Fixes
    Fix a bug of missing hashes for packages with file:// links the first time they are added. #1325
    Ignore invalid values of data-requires-python when parsing package links. #1334
    Leave an incomplete project metadata if PDM fails to parse the project files, but emit a warning. #1337
    Fix the bug that editables package isn't installed for self package. #1344
    Fix a decoding error for non-ASCII characters in package description when publishing it. #1345
    Documentation
    Clarify documentation explaining setup-script, run-setuptools, and is-purelib. #1327
* Sun Aug 14 2022 Ben Greiner <code@bnavigator.de>
  - Update to v2.1.2
    * Fix a bug that dependencies from different versions of the same
      package override each other. #1307
    * Forward SIGTERM to child processes in pdm run. #1312
    * Fix errors when running on FIPS 140-2 enabled systems using
      Python 3.9 and newer. #1313
    * Fix the build failure when the subprocess outputs with non-UTF8
      characters. #1319
    * Delay the trigger of post_lock for add and update operations,
      to ensure the pyproject.toml is updated before the hook is run.
      [#1320]
  - Release 2.1.1
    * Add a env_file.override option that allows the user to specify
      that the env_file should override any existing environment
      variables. This is not the default as the environment the code
      runs it should take precedence. #1299
    * Fix a bug that unnamed requirements can't override the old ones
      in either add or update command. #1287
    * Support mutual TLS to private repositories via pypi.client_cert
      and pypi.client_key config options. #1290
    * Set a minimum version for the packaging dependency to ensure
      that packaging.utils.parse_wheel_filename is available. #1293
    * Fix a bug that checking for PDM update creates a venv. #1301
    * Prefer compatible packages when fetching metadata. #1302
  - Release 2.1.0
    * Allow the use of custom CA certificates using the pypi.ca_certs
      config entry. #1240
    * Add pdm export to available pre-commit hooks. #1279
    * Skip incompatible requirements when installing build
      dependencies. #1264
    * Fix a crash when pdm tries to publish a package with non-ASCII
      characters in the metadata. #1270
    * Try to read the lock file even if the lock version is
      incompatible. #1273
    * For packages that are only available as source distribution,
      the summary field in pdm.lock contains the description from the
      package's pyproject.toml. #1274
    * Do not crash when calling pdm show for a package that is only
      available as source distribution. #1276
    * Fix a bug that completion scripts are interpreted as rich
      markups. #1283
    * Remove the dependency of pip. #1268
    * Deprecate the top-level imports from pdm module, it will be
      removed in the future. #1282
  - Release 2.0.3
    * Support Conda environments when detecting the project
      environment. #1253
    * Fix the interpreter resolution to first try python executable
      in the PATH. #1255
    * Stabilize sorting of URLs in metadata.files in pdm.lock. #1256
    * Don't expand credentials in the file URLs in the [metada.files]
      table of the lock file. #1259
  - Release 2.0.2
    * env_file variables no longer override existing environment
      variables. #1235
    * Support referencing other optional groups in
      optional-dependencies with <this_package_name>[group1, group2]
      [#1241]
    * Respect requires-python when creating the default venv. #1237
  - Release 2.0.1
    * Write lockfile before calling 'post_lock' hook #1224
    * Suppress errors when cache dir isn't accessible. #1226
    * Don't save python path for venv commands. #1230
  - Release 2.0.0
    * Fix a bug that the running env overrides the PEP 582
      PYTHONPATH. #1211
    * Add pwsh as an alias of powershell for shell completion. #1216
    * Fixed a bug with zsh completion regarding --pep582 flag. #1218
    * Fix a bug of requirement checking under non-isolated mode.
      [#1219]
    * Fix a bug when removing packages, TOML document might become
      invalid. #1221
  - Back to testing all python flavors in one go: CLI tests fail if
    only one python interpreter is found. The test suite runs under 3
    minutes per flavor on a normal workstation.
* Sun Jun 19 2022 Ben Greiner <code@bnavigator.de>
  - Fix runtime requirements, test by removing build requirements and
    let it pull in in test flavors.
* Fri Jun 17 2022 Steve Kowalik <steven.kowalik@suse.com>
  - Update to 1.15.2:
    * Fix a defect in the resolution preferences that causes an infinite
      resolution loop. #1119
    * Update the poetry importer to support the new [tool.poetry.build] config
      table. #1131
    * Fix a bug where dependencies with requires-python pre-release versions
      caused pdm update to fail with InvalidPyVersion. #1111
    * Fix a bug that dependencies are missing from the dep graph when they are
      depended by a requirement with extras. #1097
    * Allow specifying lockfile other than pdm.lock by --lockfile option or
      PDM_LOCKFILE env var. #1038
    * Ensure the pip module inside venv in installation script. #1053
    * Fix a bug that file paths in URLs are not correctly unquoted. #1073
    * Fix a bug on Python 3.11 that overriding an existing command from plugins
      raises an error. #1075
    * Fix a bug of missing subdirectory fragment when importing from a
      requirements.txt. #1036
    * Fix use_cache.json with corrupted python causes pdm use error. #1039
    * Fix a bug that requirement with extras isn't resolved to the version as
      specified by the range. #1001
    * Support installer 0.5.x. #1002
    * Don't create project files in pdm search command. #993
    * Fix a bug that the env vars in source urls in exported result are not
      expanded. #997
    * Don't follow symlinks for the paths in the requirement strings. #976
    * Fix a bug that _.site_packages is overridden by default option value. #985
    * Filter out the unmatched python versions when listing the available
      versions. #941
    * Fix a bug displaying the available python versions. #943
    * Fix a bug under non-UTF8 console encoding. #960
    * Fix a bug that data files are not copied to the destination when using
      installation cache. #961
    * Switch from pythonfinder to findpython as the Python version finder. #930
    * Fix a regression issue that prereleases can't be installed if the version
      specifier of the requirement doesn't imply that. #920
    * Fix a race condition in parallel installation by changing metadata to a
      lazy property. This fixes a bug that incompatible wheels are installed
      unexpectedly. #924
    * Fix a bug that incompatible platform-specific wheels are installed. #921
    * Fix the compatibility issue with pip>=22.0. #875
    * Fix the hash calculation when generating direct_url.json for a local
      pre-built wheel. #861
    * Reduce the number of tests that require network, and mark the rest with
      network marker. #858
  - Remove artifacts.tar.gz, it is now included in the source tarball.
  - Drop patches because they are included upstream:
    * mark-network-tests.patch
    * mark-tests-path.patch
    * sys-exec-failures.patch
  - Add patch instrumentation-test-case.patch:
    * Instrument a test case for ease of debugging.
  - Switch to multibuild per Python version since the testsuite takes
    approximately seven eons.
* Mon Jan 24 2022 Matej Cepl <mcepl@suse.com>
  - My ad-hoc patch failed_test_use_command.patch replaced by the
    upstream mark-tests-path.patch (from
    gh#pdm-project/pdm#commit/23f1cf62a302 and gh#pdm-project/pdm#865).
* Sun Jan 23 2022 Matej Cepl <mcepl@suse.com>
  - By downgrading python-installer to 0.3 we have eliminated
    number of failed tests.
* Sun Jan 23 2022 Matej Cepl <mcepl@suse.com>
  - Replacing mark-network-tests.patch with the upstream PR
    (gh#pdm-project/pdm#864), which unfortunately leaves a lot of
    tests still failing.
* Fri Jan 21 2022 Matej Cepl <mcepl@suse.com>
  - Add mark-network-tests.patch for skipping network-requiring
    tests (gh#pdm-project/pdm#858). This is a very shotgun
    approach, just mark everything which fails.
  - Add sys-exec-failures.patch to fix problems with the version
    number of Python 3.10 (gh#pdm-project/pdm#865).
* Thu Jan 20 2022 Matej Cepl <mcepl@suse.com>
  - Initial packaging effort for pdm 1.12.6

Files

/etc/alternatives/pdm
/usr/bin/pdm
/usr/bin/pdm-3.12
/usr/lib/python3.12/site-packages/pdm
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/INSTALLER
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/METADATA
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/RECORD
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/REQUESTED
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/WHEEL
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/entry_points.txt
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/licenses
/usr/lib/python3.12/site-packages/pdm-2.12.4.dist-info/licenses/LICENSE
/usr/lib/python3.12/site-packages/pdm/__main__.py
/usr/lib/python3.12/site-packages/pdm/__pycache__
/usr/lib/python3.12/site-packages/pdm/__pycache__/__main__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/__main__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/__version__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/__version__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/_types.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/_types.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/compat.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/compat.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/core.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/core.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/exceptions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/exceptions.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/pytest.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/pytest.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/signals.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/signals.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/termui.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/termui.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/utils.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/__pycache__/utils.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/__version__.py
/usr/lib/python3.12/site-packages/pdm/_types.py
/usr/lib/python3.12/site-packages/pdm/builders
/usr/lib/python3.12/site-packages/pdm/builders/__init__.py
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/base.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/base.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/editable.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/editable.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/sdist.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/sdist.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/wheel.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/builders/__pycache__/wheel.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/builders/base.py
/usr/lib/python3.12/site-packages/pdm/builders/editable.py
/usr/lib/python3.12/site-packages/pdm/builders/sdist.py
/usr/lib/python3.12/site-packages/pdm/builders/wheel.py
/usr/lib/python3.12/site-packages/pdm/cli
/usr/lib/python3.12/site-packages/pdm/cli/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/actions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/actions.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/filters.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/filters.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/hooks.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/hooks.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/options.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/options.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/utils.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/__pycache__/utils.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/actions.py
/usr/lib/python3.12/site-packages/pdm/cli/commands
/usr/lib/python3.12/site-packages/pdm/cli/commands/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/add.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/add.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/base.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/base.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/build.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/build.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/cache.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/cache.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/completion.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/completion.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/config.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/config.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/export.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/export.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/import_cmd.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/import_cmd.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/info.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/info.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/init.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/init.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/install.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/install.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/list.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/list.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/lock.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/lock.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/remove.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/remove.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/run.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/run.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/search.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/search.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/self_cmd.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/self_cmd.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/show.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/show.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/sync.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/sync.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/update.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/update.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/use.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/__pycache__/use.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/add.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/base.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/build.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/cache.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/completion.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/config.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/export.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix/__pycache__/fixers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix/__pycache__/fixers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/fix/fixers.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/import_cmd.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/info.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/init.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/install.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/list.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/lock.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__pycache__/package.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__pycache__/package.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__pycache__/repository.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/__pycache__/repository.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/package.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/publish/repository.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/remove.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/run.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/search.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/self_cmd.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/show.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/sync.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/update.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/use.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/activate.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/activate.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/backends.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/backends.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/create.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/create.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/list.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/list.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/purge.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/purge.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/remove.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/remove.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/utils.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/__pycache__/utils.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/activate.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/backends.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/create.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/list.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/purge.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/remove.py
/usr/lib/python3.12/site-packages/pdm/cli/commands/venv/utils.py
/usr/lib/python3.12/site-packages/pdm/cli/completions
/usr/lib/python3.12/site-packages/pdm/cli/completions/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/completions/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/completions/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/completions/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/completions/pdm.bash
/usr/lib/python3.12/site-packages/pdm/cli/completions/pdm.fish
/usr/lib/python3.12/site-packages/pdm/cli/completions/pdm.ps1
/usr/lib/python3.12/site-packages/pdm/cli/completions/pdm.zsh
/usr/lib/python3.12/site-packages/pdm/cli/filters.py
/usr/lib/python3.12/site-packages/pdm/cli/hooks.py
/usr/lib/python3.12/site-packages/pdm/cli/options.py
/usr/lib/python3.12/site-packages/pdm/cli/templates
/usr/lib/python3.12/site-packages/pdm/cli/templates/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/templates/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/templates/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/default
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/.gitignore
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/README.md
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/pyproject.toml
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/src
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/src/example_package
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/src/example_package/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/src/example_package/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/src/example_package/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/src/example_package/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/tests
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/tests/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/tests/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/tests/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/default/tests/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/minimal
/usr/lib/python3.12/site-packages/pdm/cli/templates/minimal/__init__.py
/usr/lib/python3.12/site-packages/pdm/cli/templates/minimal/__pycache__
/usr/lib/python3.12/site-packages/pdm/cli/templates/minimal/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/minimal/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/cli/templates/minimal/pyproject.toml
/usr/lib/python3.12/site-packages/pdm/cli/utils.py
/usr/lib/python3.12/site-packages/pdm/compat.py
/usr/lib/python3.12/site-packages/pdm/core.py
/usr/lib/python3.12/site-packages/pdm/environments
/usr/lib/python3.12/site-packages/pdm/environments/__init__.py
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/base.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/base.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/local.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/local.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/python.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/environments/__pycache__/python.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/environments/base.py
/usr/lib/python3.12/site-packages/pdm/environments/local.py
/usr/lib/python3.12/site-packages/pdm/environments/python.py
/usr/lib/python3.12/site-packages/pdm/exceptions.py
/usr/lib/python3.12/site-packages/pdm/formats
/usr/lib/python3.12/site-packages/pdm/formats/__init__.py
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/base.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/base.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/flit.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/flit.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/pipfile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/pipfile.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/poetry.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/poetry.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/requirements.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/requirements.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/setup_py.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/formats/__pycache__/setup_py.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/formats/base.py
/usr/lib/python3.12/site-packages/pdm/formats/flit.py
/usr/lib/python3.12/site-packages/pdm/formats/pipfile.py
/usr/lib/python3.12/site-packages/pdm/formats/poetry.py
/usr/lib/python3.12/site-packages/pdm/formats/requirements.py
/usr/lib/python3.12/site-packages/pdm/formats/setup_py.py
/usr/lib/python3.12/site-packages/pdm/installers
/usr/lib/python3.12/site-packages/pdm/installers/__init__.py
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/core.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/core.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/installers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/installers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/manager.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/manager.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/packages.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/packages.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/synchronizers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/synchronizers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/uninstallers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/installers/__pycache__/uninstallers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/installers/core.py
/usr/lib/python3.12/site-packages/pdm/installers/installers.py
/usr/lib/python3.12/site-packages/pdm/installers/manager.py
/usr/lib/python3.12/site-packages/pdm/installers/packages.py
/usr/lib/python3.12/site-packages/pdm/installers/synchronizers.py
/usr/lib/python3.12/site-packages/pdm/installers/uninstallers.py
/usr/lib/python3.12/site-packages/pdm/models
/usr/lib/python3.12/site-packages/pdm/models/VERSION
/usr/lib/python3.12/site-packages/pdm/models/__init__.py
/usr/lib/python3.12/site-packages/pdm/models/__pycache__
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/auth.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/auth.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/backends.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/backends.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/caches.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/caches.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/candidates.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/candidates.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/environment.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/environment.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/finder.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/finder.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/markers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/markers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/project_info.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/project_info.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/python.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/python.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/reporter.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/reporter.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/repositories.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/repositories.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/requirements.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/requirements.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/search.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/search.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/session.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/session.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/setup.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/setup.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/specifiers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/specifiers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/venv.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/venv.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/versions.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/versions.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/working_set.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/__pycache__/working_set.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/auth.py
/usr/lib/python3.12/site-packages/pdm/models/backends.py
/usr/lib/python3.12/site-packages/pdm/models/caches.py
/usr/lib/python3.12/site-packages/pdm/models/candidates.py
/usr/lib/python3.12/site-packages/pdm/models/environment.py
/usr/lib/python3.12/site-packages/pdm/models/finder.py
/usr/lib/python3.12/site-packages/pdm/models/in_process
/usr/lib/python3.12/site-packages/pdm/models/in_process/__init__.py
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/get_abis.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/get_abis.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/parse_setup.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/parse_setup.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/pep508.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/pep508.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/sysconfig_get_paths.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/__pycache__/sysconfig_get_paths.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/models/in_process/get_abis.py
/usr/lib/python3.12/site-packages/pdm/models/in_process/parse_setup.py
/usr/lib/python3.12/site-packages/pdm/models/in_process/pep508.py
/usr/lib/python3.12/site-packages/pdm/models/in_process/sysconfig_get_paths.py
/usr/lib/python3.12/site-packages/pdm/models/markers.py
/usr/lib/python3.12/site-packages/pdm/models/project_info.py
/usr/lib/python3.12/site-packages/pdm/models/python.py
/usr/lib/python3.12/site-packages/pdm/models/python_max_versions.json
/usr/lib/python3.12/site-packages/pdm/models/reporter.py
/usr/lib/python3.12/site-packages/pdm/models/repositories.py
/usr/lib/python3.12/site-packages/pdm/models/requirements.py
/usr/lib/python3.12/site-packages/pdm/models/search.py
/usr/lib/python3.12/site-packages/pdm/models/session.py
/usr/lib/python3.12/site-packages/pdm/models/setup.py
/usr/lib/python3.12/site-packages/pdm/models/specifiers.py
/usr/lib/python3.12/site-packages/pdm/models/venv.py
/usr/lib/python3.12/site-packages/pdm/models/versions.py
/usr/lib/python3.12/site-packages/pdm/models/working_set.py
/usr/lib/python3.12/site-packages/pdm/pep582
/usr/lib/python3.12/site-packages/pdm/pep582/__init__.py
/usr/lib/python3.12/site-packages/pdm/pep582/__pycache__
/usr/lib/python3.12/site-packages/pdm/pep582/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/pep582/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/pep582/__pycache__/sitecustomize.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/pep582/__pycache__/sitecustomize.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/pep582/sitecustomize.py
/usr/lib/python3.12/site-packages/pdm/project
/usr/lib/python3.12/site-packages/pdm/project/__init__.py
/usr/lib/python3.12/site-packages/pdm/project/__pycache__
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/config.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/config.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/core.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/core.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/lockfile.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/lockfile.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/project_file.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/project_file.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/toml_file.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/project/__pycache__/toml_file.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/project/config.py
/usr/lib/python3.12/site-packages/pdm/project/core.py
/usr/lib/python3.12/site-packages/pdm/project/lockfile.py
/usr/lib/python3.12/site-packages/pdm/project/project_file.py
/usr/lib/python3.12/site-packages/pdm/project/toml_file.py
/usr/lib/python3.12/site-packages/pdm/py.typed
/usr/lib/python3.12/site-packages/pdm/pytest.py
/usr/lib/python3.12/site-packages/pdm/resolver
/usr/lib/python3.12/site-packages/pdm/resolver/__init__.py
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/__init__.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/__init__.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/core.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/core.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/graph.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/graph.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/providers.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/providers.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/python.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/python.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/reporters.cpython-312.opt-1.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/__pycache__/reporters.cpython-312.pyc
/usr/lib/python3.12/site-packages/pdm/resolver/core.py
/usr/lib/python3.12/site-packages/pdm/resolver/graph.py
/usr/lib/python3.12/site-packages/pdm/resolver/providers.py
/usr/lib/python3.12/site-packages/pdm/resolver/python.py
/usr/lib/python3.12/site-packages/pdm/resolver/reporters.py
/usr/lib/python3.12/site-packages/pdm/signals.py
/usr/lib/python3.12/site-packages/pdm/termui.py
/usr/lib/python3.12/site-packages/pdm/utils.py
/usr/share/doc/packages/python312-pdm
/usr/share/doc/packages/python312-pdm/README.md
/usr/share/licenses/python312-pdm
/usr/share/licenses/python312-pdm/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu May 2 23:22:08 2024