Up to [cvs.NetBSD.org] / pkgsrc / devel / py-pep517
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.8 / (download) - annotate - [select for diffs], Mon Aug 1 07:52:59 2022 UTC (13 months, 3 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
HEAD
Changes since 1.7: +4 -4
lines
Diff to previous 1.7 (colored)
py-pep517: updated to 0.13.0 0.13 - Remove support for end-of-life Pythons. Now requires Python3.6+. - Remove support for ``toml`` package. Now requires ``tomli``. - Rely on preferred "files" API on Python 3.9 and later.
Revision 1.7 / (download) - annotate - [select for diffs], Tue Oct 26 17:13:01 2021 UTC (23 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Changes since 1.6: +4 -4
lines
Diff to previous 1.6 (colored)
py-pep517: updated to 0.12.0 0.12 Add method for pip to check if build_editable hook is supported. This is a private API for now.
Revision 1.6 / (download) - annotate - [select for diffs], Tue Oct 26 10:18:44 2021 UTC (23 months ago) by nia
Branch: MAIN
Changes since 1.5: +2 -2
lines
Diff to previous 1.5 (colored)
archivers: Replace RMD160 checksums with BLAKE2s checksums All checksums have been double-checked against existing RMD160 and SHA512 hashes Could not be committed due to merge conflict: devel/py-traitlets/distinfo The following distfiles were unfetchable (note: some may be only fetched conditionally): ./devel/pvs/distinfo pvs-3.2-solaris.tgz ./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
Revision 1.5 / (download) - annotate - [select for diffs], Thu Oct 7 13:43:26 2021 UTC (23 months, 2 weeks ago) by nia
Branch: MAIN
Changes since 1.4: +1 -2
lines
Diff to previous 1.4 (colored)
devel: Remove SHA1 hashes for distfiles
Revision 1.4 / (download) - annotate - [select for diffs], Mon Jul 19 07:07:13 2021 UTC (2 years, 2 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3
Changes since 1.3: +5 -5
lines
Diff to previous 1.3 (colored)
py-pep517: updated to 0.11.0 0.11 - Support editable hooks (`PEP 660 <https://www.python.org/dev/peps/pep-0660/>`_). - Use the TOML 1.0 compliant ``tomli`` parser module on Python 3.6 and above. - Ensure TOML files are always read as UTF-8. - Switch CI to Github actions.
Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 15 12:08:11 2021 UTC (2 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1
Changes since 1.2: +5 -5
lines
Diff to previous 1.2 (colored)
py-pep517: updated to 0.10.0 0.10 Avoid shadowing imports such as colorlog in the backend, by moving the _in_process.py script into a separate subpackage. Issue warnings when using the deprecated pep517.build and pep517.check modules at the command line. See the PyPA build project for a replacement. Allow building with flit_core 3.x. Prefer the standard library unittest.mock to mock for tests on Python 3.6 and above.
Revision 1.2 / (download) - annotate - [select for diffs], Wed Oct 21 06:41:24 2020 UTC (2 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base,
pkgsrc-2020Q4
Changes since 1.1: +5 -5
lines
Diff to previous 1.1 (colored)
py-pep517: updated to 0.9.1 0.9 - Deprecated the higher level API which handles creating an environment and installing build dependencies. This was not very complete, and the `PyPA build project <https://github.com/pypa/build>`_ is designed for this use case. - New ``python_executable`` parameter for :class:`.Pep517HookCaller` to run hooks with a different Python interpreter. - Fix for locating the script to run in the subprocess in some scenarios. - Fix example in README to get ``build-backend`` correctly. - Created `documentation on Read the Docs <https://pep517.readthedocs.io/en/latest/index.html>`__ - Various minor improvements to testing.
Revision 1.1 / (download) - annotate - [select for diffs], Fri Jun 12 06:58:26 2020 UTC (3 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2
py-pep517: added version 0.8.2 PEP 517 specifies a standard API for systems which build Python packages. This package contains wrappers around the hooks specified by PEP 517. It provides: * A mechanism to call the hooks in a subprocess, so they are isolated from the current process. * Fallbacks for the optional hooks, so that frontends can call the hooks without checking which are defined. * Higher-level functions which install the build dependencies into a temporary environment and build a wheel/sdist using them.