Adam Johnson
Adam Johnson
This will render the description correctly on the [PyPI page](https://pypi.org/project/enforce/), when you next do a release. Docs: https://setuptools.pypa.io/en/latest/references/keywords.html?highlight=long_description#keywords
*cfn-lint version: (`cfn-lint --version`)* 0.7.2 *Description of issue.* Using a template like: ```yaml Resources: AutoScalingGroup: Type: AWS::AutoScaling::AutoScalingGroup Properties: # ... MinSize: "1" MaxSize: "1" # ... UpdatePolicy: AutoScalingRollingUpdate: MinInstancesInService: 1...
Make a new folder and run these four commands to set up a basic bundle with [esbuild](https://esbuild.github.io/) (webpack competitor): ``` npm install htmx.org hyperscript.org esbuild echo 'require("htmx.org/dist/htmx.js"); require("hyperscript.org/dist/_hyperscript.js");' > app.js...
**What is the purpose of this pull request? (put an "X" next to item)** [x] Documentation update **What changes did you make? (Give an overview)** * Add the `description` field...
pytype currently gets its configuration from `setup.cfg`, but that file is *technically* for setuptools only, although historically many tools have used it. `pyproject.toml` is the new file that other tools...
By releasing as a [Python wheel](http://pythonwheels.com/) as well as a source distribution, you can speed up end user’s installs. After merging this command, to release you just need to run...
PR #928 fixed most inline style errors from Content Security Policy, but it missed this one. This fixes another error by again using `style` to add the style rule.
Python < 3.7 is no longer supported, so drop support and old syntax. Add `python_requires` in `setup.py` so installs on old Python versions will get older versions of django-fsm.
If you want your multi-document yaml files to look like: ```yaml 1 --- 2 --- 3 ``` You might think it reasonable to use `document-start: {present: false}`, but unfortunately this...
Afaict [from searching](https://yamllint.readthedocs.io/en/latest/search.html?q=extends&check_keywords=yes&area=default) the docs don't point out that `extends` can have a value other than `default` - I had to read the code to discover [it can also take...