7e75865e25Accepting request 1237617 from devel:languages:python
factory
Ana Guerrero
2025-01-15 16:41:51 +00:00
fbec085a4c- Update to 3.10.1: * flit publish can now use PyPI tokens stored in keyring (PR #649), either project tokens with a ‘username’ like pypi_token:project:project_name (use the normalised form of the name) or user tokens (pypi_token:user:username). * The --python option can now take the path of a virtualenv folder, as an alternative to a Python executable (PR #667). * Flit will work with current development versions of Pythona again (PR #684). * The flit command line package now requires Python 3.8 or above (PR #660). flit_core still works with Python 3.6 or above. * The metadata in packages now has the names of optional dependency groups (“extras”) normalised, complying with version 2.3 of the metadata standard (PR #676, PR #697). * The flit command line package now depends on pip (PR #647). * Fix potential substitution of environment variables into passwords read from .pypirc files (PR #652). * A warning is now shown when building packages which specify the old flit.buildapi backend, which should be replaced by flit_core.buildapi (PR #674). It’s a good idea to always set a maximum version for the build requirement, to protect against changes in future major versions of Flit. * Avoid using the deprecated datetime.utcfromtimestamp() (PR #682). * Flit now has a SECURITY.md file in the Github repository (PR #665). * The tests for flit_core are no longer part of the installed package, reducing the size of the wheels (PR #691). - Drop patches, included upstream: * py312-avoid-using-utcfromtimestamp.patch * py314-avoid-using-ast-str.patch - We no longer need to remove the tests from the install.
devel
Steve Kowalik
2025-01-14 02:40:20 +00:00
5948cc3308Accepting request 1186039 from devel:languages:python
Ana Guerrero
2024-07-08 17:07:15 +00:00
bb01e8dc16Accepting request 1149910 from devel:languages:python
Ana Guerrero
2024-02-25 13:04:40 +00:00
93ff47ed68Accepting request 1149900 from home:dimstar:FactoryMarkéta Machová2024-02-23 12:31:59 +00:00
0a0ec9b7dcAccepting request 1109507 from devel:languages:python
Ana Guerrero
2023-09-08 19:15:23 +00:00
9f544b5295- update to 3.9.0: * New options :option:flit build --use-vcs and :option:flit build --no-use-vcs to enable & disable including all committed files in the sdist. For now --use-vcs is the default, but this is likely to change in a future version, to bring flit build in line with standard build frontends like python -m build * Sdist file names, and the name of the top-level folder in an sdist, are now normalised, in accordance with PEP 625 * A statically defined version number can now be parsed from files called version.py, _version.py or __version__.py inside a packge, as well as from __init__.py, so executing code is required in fewer cases * Fix setting the flag for regular files in zip metadata * The timestamp embedded in the gzip wrapper for sdists now defaults to a fixed date, so building an sdist twice on the same machine should produce identical results, even without any special steps.Dirk Mueller2023-09-07 10:54:26 +00:00
a7f1ef5645- Update to Version 3.4 * Python 3.6 or above is now required, both for flit and flit_core. * Add a --setup-py option to flit build and flit publish, and a warning when neither this nor --no-setup-py are specified (PR #431). A future version will stop generating setup.py files in sdists by default. * Add support for standardised editable installs - pip install -e - according to PEP 660 (PR #400). * Add a --pypirc option for flit publish to specify an alternative path to a .pypirc config file describing package indexes (PR #434). * Fix installing dependencies specified in a [project] table (PR #433) * Fix building wheels when SOURCE_DATE_EPOCH (see Reproducible builds) is set to a date before 1980 (PR #448). * Switch to using the tomli TOML parser, in common with other packaging projects (PR #438). This supports TOML version 1.0. * Add a document on Bootstrapping (PR #441). - Release Version 3.3 * PKG-INFO files in sdists are now generated the same way as METADATA in wheels, fixing some issues with sdists (PR #410). * flit publish now sends SHA-256 hashes, fixing uploads to GitLab package repositories (PR #416). * The [project] metadata table from PEP 621 is now fully supported and documented. Projects using this can now specify requires = ["flit_core >=3.2,<4"] in theBenjamin Greiner2021-10-15 17:40:12 +00:00