diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2021-03-12 18:25:58 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-03-14 09:19:05 -0700 |
| commit | 17d5c62f095fbaf590f45d3e50c119bd3900c6b5 (patch) | |
| tree | 11d131978ab9d514eba5631620bff74bc7a4e4d4 /meta-python/recipes-devtools/python/python3-pyscaffold_4.0.bb | |
| parent | 114c4ffa1617e84ddc109d382ce9aba921c71c39 (diff) | |
| download | meta-openembedded-17d5c62f095fbaf590f45d3e50c119bd3900c6b5.tar.gz | |
python3-pyscaffold: Upgrade 3.3.1 -> 4.0
Upgrade to release 4.0:
- Cookiecutter, Django and Travis extensions extracted to their
own repositories
- Support for Python 3.4 and 3.5 dropped
- Dropped deprecated requirements.txt file
- Added support for global configuration (avoid retyping common
putup's options)
- PyScaffold is no longer a build-time dependency, it just
generates the project structure
- Removed contrib subpackage, vendorized packages are now runtime
dependencies
- setuptools_scm is included by default in setup.cfg, setup.py and
pyproject.toml
- API changed to use pyscaffold.operations instead of integer
flags
- Allow string.Template and callable as file contents in project
structure
- Extract file system functions from utils.py into file_system.py
- Extract identification/naming functions from utils.py into
identification.py
- Extract action related functions from api/__init__.py to
actions.py
- helpers.{modify,ensure,reject} moved to structure.py
- helpers.{register,unregister} moved to actions.py
- New extension for automatically creating virtual environments
(--venv)
- Added instructions to use pip-tools to docs
- pre-commit extension now attempts to install hooks automatically
- A nice message is now displayed when PyScaffold finishes running
(actions.report_done)
- Removed mutually exclusive argparse groups for extensions
- Progressive type annotations adopted in the code base together
with mypy linting
- Simplified isort config
- pyproject.toml and isolated builds adopted by default
- Added comment to setup.cfg template instructing about extra links
- Generate tox.ini by default
- Replace pkg_resources with importlib.{metadata,resources} and
packaging
- Adopt PEP 420 for namespaces
- Adopt SPDX identifiers for the license field in setup.cfg
- Removed deprecated log.configure_logger
- Add links to issues and pull requests to changelog
- Add an experimental --interactive mode (inspired by git rebase -i)
- Reorganise the FAQ (including version questions previously in
Features)
- Updated setuptools and setuptools_scm dependencies to minimal
versions 46.1 and 5, respectively
- Adopted no-guess-dev version scheme from setuptools_scm
(semantically all stays the same, but non-tag commits are now
versioned LAST_TAG.post1.devN instead of LAST_TAG.post0.devN)
- Fix problem of not showing detailed log with --verbose if error
happens when loading extensions
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyscaffold_4.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pyscaffold_4.0.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyscaffold_4.0.bb b/meta-python/recipes-devtools/python/python3-pyscaffold_4.0.bb new file mode 100644 index 0000000000..1ad33c10d3 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pyscaffold_4.0.bb | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | SUMMARY = "Python project template generator with batteries included" | ||
| 2 | DESCRIPTION = "PyScaffold package helps to setup a new Python project. \ | ||
| 3 | After installation, it provides a new command [putup], which could be \ | ||
| 4 | used to create template Projects." | ||
| 5 | |||
| 6 | HOMEPAGE = "https://github.com/pyscaffold/pyscaffold" | ||
| 7 | SECTION = "devel/python" | ||
| 8 | LICENSE = "MIT" | ||
| 9 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489" | ||
| 10 | |||
| 11 | inherit pypi setuptools3 | ||
| 12 | |||
| 13 | PYPI_PACKAGE = "PyScaffold" | ||
| 14 | |||
| 15 | SRC_URI[sha256sum] = "7012ae5f9c95b910a39a099824104dc888beb932de86b07514882f3511bc6c74" | ||
| 16 | |||
| 17 | BBCLASSEXTEND = "native nativesdk" | ||
