pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-pdm



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Jun 28 14:11:53 UTC 2023

Modified Files:
        pkgsrc/devel/py-pdm: Makefile distinfo

Log Message:
py-pdm: updated to 2.7.4

Release v2.7.4 (2023-06-13)
---------------------------

No significant changes.

Release v2.7.3 (2023-06-13)
---------------------------

Bug Fixes

- Fix the warning of extras not found due to extra names not normalized.
- Pop up a warning when the deprecated `parser` argument is passed to `BaseCommand.__init__()` method.
- Fix a bug that merging settings with AoTs causing a failure.

Release v2.7.2 (2023-06-12)
---------------------------

Features & Improvements

- Add option to expand environment variables when exporting requirements.

Bug Fixes

- Case-insensitive sorting in `pdm list`.
- Make a compatible cache reader to read the old cache files.
- Fix a bug that `pdm init -n` doesn't respect the `--python` option.
- Do not use the deprecated nested argument groups.
- Fix an error parsing `setup.py` if it prints something to stdout.
- Exclude yanked versions when running `install-pdm.py`.

Release v2.7.1 (2023-06-06)
---------------------------

Features & Improvements

- Switch HTTP data cache to use a split body setup, where the actual body contents are not written to disk unless changed. Previously, any changed headers would write the whole body to disk again.
- Show the specific install commands for different installations when checking update. This was removed before.

Bug Fixes

- PDM ignores env vars `PDM_PYPI_USERNAME` and `PDM_PYPI_PASSWORD` when there are no defaults in config.
- Guess the project name from VCS url if it is missing when importing from requirements.txt.
- Correctly read the config from environment variables.

Release v2.7.0 (2023-05-29)
---------------------------

Features & Improvements

- When keyring is available, either by importing or by CLI, the credentials of repositories and PyPI indexes will be saved into it.
- Add support for reading metadata from simple index directly.
- Add a configuration to specify constant command arguments for every pdm invocation.
- Add ability to skip SSL verification for publish repositories via `repository.custom.verify_ssl` config option as well as new command line argument of `publish` command.
- Use lazy import to reduce the startup time of the CLI.
- Add the local plugin scripts to `PATH` env var.

Bug Fixes

- Don't use install cache when installing build requirements to avoid race condition.
- Fix a number of `ResourceWarning`s when running the test suite with warnings enabled.
- Fix a bug that dev-dependencies group gets updated with the optional dependencies, causing the hash mismatch.
- Fix format conversion error from Poetry when `tool.poetry.build` doesn't exist.
- Add timeout when fetching .gitignore from GitHub.
- Keep the variables in the URL credentials when exporting.
- Convert to boolean when setting verify_ssl for custom indexes.
- `pdm import` clobbers `build-system.requires` value in `pyproject.toml`.

Documentation

- Update publish.md to use run instead of runs to match GitHub Actions steps documentation
- Update advanced.md to use `pdm sync` instead of `pdm install --no-lock`.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-pdm/Makefile \
    pkgsrc/devel/py-pdm/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-pdm/Makefile
diff -u pkgsrc/devel/py-pdm/Makefile:1.5 pkgsrc/devel/py-pdm/Makefile:1.6
--- pkgsrc/devel/py-pdm/Makefile:1.5    Mon May 15 20:46:12 2023
+++ pkgsrc/devel/py-pdm/Makefile        Wed Jun 28 14:11:53 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2023/05/15 20:46:12 adam Exp $
+# $NetBSD: Makefile,v 1.6 2023/06/28 14:11:53 adam Exp $
 
-DISTNAME=      pdm-2.6.1
+DISTNAME=      pdm-2.7.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pdm/}
@@ -12,7 +12,7 @@ LICENSE=      mit
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-pdm_backend-[0-9]*:../../devel/py-pdm_backend
 DEPENDS+=      ${PYPKGPREFIX}-blinker-[0-9]*:../../devel/py-blinker
-DEPENDS+=      ${PYPKGPREFIX}-cachecontrol>=0.12.11:../../devel/py-cachecontrol
+DEPENDS+=      ${PYPKGPREFIX}-cachecontrol>=0.13.0:../../devel/py-cachecontrol
 DEPENDS+=      ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi
 DEPENDS+=      ${PYPKGPREFIX}-dotenv>=0.15:../../devel/py-dotenv
 DEPENDS+=      ${PYPKGPREFIX}-findpython>=0.2.2:../../lang/py-findpython
@@ -27,8 +27,8 @@ DEPENDS+=     ${PYPKGPREFIX}-rich>=12.3.0:..
 DEPENDS+=      ${PYPKGPREFIX}-tomlkit>=0.11.1:../../textproc/py-tomlkit
 DEPENDS+=      ${PYPKGPREFIX}-unearth>=0.9.0:../../net/py-unearth
 DEPENDS+=      ${PYPKGPREFIX}-virtualenv>=20:../../devel/py-virtualenv
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-httpserver>=1.0.6:../../devel/py-test-httpserver
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-rerunfailures>=10.2:../../devel/py-test-rerunfailures
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=1.31.0:../../devel/py-test-xdist
 
Index: pkgsrc/devel/py-pdm/distinfo
diff -u pkgsrc/devel/py-pdm/distinfo:1.5 pkgsrc/devel/py-pdm/distinfo:1.6
--- pkgsrc/devel/py-pdm/distinfo:1.5    Mon May 15 20:46:12 2023
+++ pkgsrc/devel/py-pdm/distinfo        Wed Jun 28 14:11:53 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2023/05/15 20:46:12 adam Exp $
+$NetBSD: distinfo,v 1.6 2023/06/28 14:11:53 adam Exp $
 
-BLAKE2s (pdm-2.6.1.tar.gz) = 5a2eefe036aef4c354e2720260b9509dc05b3cbffa20d80f26129bd5d8492ad0
-SHA512 (pdm-2.6.1.tar.gz) = 91d0967f407f1f1e2d23e9b43e268d105ed14ec7772eaa433bf20912fa710478ee7a33d01691d795b875cf6385d61bb3d431d176d53c16d3018670e28794b9c5
-Size (pdm-2.6.1.tar.gz) = 3056889 bytes
+BLAKE2s (pdm-2.7.4.tar.gz) = 183ffec8b7172057fcd428c75ca1e55cc2bb899ef2fbe3b6da8128040115b2f5
+SHA512 (pdm-2.7.4.tar.gz) = 17621b2243251b91737b8c0e4a393b00c7fd23b352ed99b521d965cfcf40c1ca0d33a409ea02fb03647f2662c10d7ee6f4e53f14cc4c276f08f0d7573f2de5b3
+Size (pdm-2.7.4.tar.gz) = 3062137 bytes



Home | Main Index | Thread Index | Old Index