Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 22.3.0 #42

Merged
merged 4 commits into from Mar 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion .ci_support/README

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .github/CODEOWNERS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 40 additions & 12 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 4 additions & 7 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 5 additions & 9 deletions recipe/meta.yaml
@@ -1,13 +1,13 @@
{% set name = "black" %}
{% set version = "22.1.0" %}
{% set version = "22.3.0" %}

package:
name: {{ name|lower }}-recipe
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: a7c0192d35635f6fc1174be575cb7915e92e5dd629ee79fdaf0dcfa41a80afb5
sha256: 35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79

build:
number: 0
Expand All @@ -19,7 +19,6 @@ outputs:
noarch: python
entry_points:
- black = black:patched_main
- black-primer = black_primer.cli:main
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

black-primer was dropped upstream in PR ( psf/black#2924 )

requirements:
host:
- python >=3.6
Expand All @@ -40,7 +39,6 @@ outputs:
- pip
commands:
- black --help
- black-primer --help
- pip check

- name: {{ name }}d
Expand All @@ -56,7 +54,6 @@ outputs:
test:
commands:
- black --help
- black-primer --help
- blackd --help

- name: {{ name }}-colorama
Expand All @@ -69,7 +66,6 @@ outputs:
test:
commands:
- black --help
- black-primer --help

- name: {{ name }}-jupyter
build:
Expand All @@ -85,18 +81,18 @@ outputs:
- python -c 'import black.handle_ipynb_magics; assert black.handle_ipynb_magics.jupyter_dependencies_are_installed(verbose=True, quiet=False) == True'

about:
home: https://github.com/python/black
home: https://github.com/psf/black
license: MIT
license_family: MIT
license_file: LICENSE
summary: The Uncompromising Code Formatter
summary: The uncompromising code formatter.

description: |
Black is the uncompromising Python code formatter. By using it, you agree
to cease control over minutiae of hand-formatting. In return, Black gives
you speed, determinism, and freedom from pycodestyle nagging about
formatting. You will save time and mental energy for more important matters.
doc_url: https://github.com/psf/black
doc_url: https://black.readthedocs.io/
dev_url: https://github.com/psf/black

extra:
Expand Down