Skip to content

Commit

Permalink
Release 2.2.0 (#216)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
dholth and pre-commit-ci[bot] authored Aug 1, 2023
1 parent 3c8c1f5 commit 7dbe812
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
github: dbast
- name: Conda Bot
email: [email protected]
num_commits: 17
num_commits: 23
first_commit: 2022-01-17 20:22:29
github: conda-bot
aliases:
Expand All @@ -86,7 +86,7 @@
first_commit: 2022-02-17 10:23:53
- name: Daniel Holth
email: [email protected]
num_commits: 21
num_commits: 24
first_commit: 2021-08-20 21:11:50
github: dholth
- name: Vadim Zayakin
Expand Down Expand Up @@ -122,5 +122,5 @@
- name: pre-commit-ci[bot]
email: 66853113+pre-commit-ci[bot]@users.noreply.github.com
github: pre-commit-ci[bot]
num_commits: 4
num_commits: 7
first_commit: 2023-01-20 04:55:56
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
[//]: # (current developments)

## 2.2.0 (2023-07-28)

### Bug fixes

* Respect umask when unpacking packages, by requiring `conda-package-streaming >= 0.9.0`.

### Docs

* Include README.md in pypi metadata. (#215)

### Contributors

* @conda-bot
* @dbast
* @dholth
* @pre-commit-ci[bot]



## 2.1.0 (2023-05-04)

### Bug fixes
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/conda/conda-package-handling/main.svg)](https://results.pre-commit.ci/latest/github/conda/conda-package-handling/main)

Create and extract conda packages of various formats
Create and extract conda packages of various formats.

`conda` and `conda-build` use `conda_package_handling.api` to create and extract
conda packages. This package also provides the `cph` command line tool to
extract, create, and convert between formats.

See also
[conda-package-streaming](https://conda.github.io/conda-package-streaming), an
efficient library to read from new and old format .conda and .tar.bz2 conda
packages.

Full documentation at [https://conda.github.io/conda-package-handling/](https://conda.github.io/conda-package-handling/)
4 changes: 2 additions & 2 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ requirements:
- wheel
run:
- python
- conda-package-streaming >=0.7.0
- conda-package-streaming >=0.9.0

test:
source_files:
Expand All @@ -49,7 +49,7 @@ about:
license_family: BSD
license_file:
- LICENSE
summary: Create and extract conda packages of various formats
summary: Create and extract conda packages of various formats.

extra:
recipe-maintainers:
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# used in sphinx documentation build
conda-package-streaming>=0.7.0
conda-package-streaming>=0.9.0
# docs
furo
sphinx
Expand Down
6 changes: 6 additions & 0 deletions rever_overrides.xsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# override synced-from-infra rever.xsh
$ACTIVITIES = ["version_bump", "authors", "changelog"]

$VERSION_BUMP_PATTERNS = [ # These note where/how to find the version numbers
('src/conda_package_handling/__init__.py', r'__version__\s*=.*', '__version__ = "$VERSION"'),
]
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
setup(
name="conda-package-handling",
version=version,
description="Create and extract conda packages of various formats",
description="Create and extract conda packages of various formats.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Anaconda, Inc.",
author_email="[email protected]",
url="https://github.com/conda/conda-package-handling",
Expand All @@ -23,7 +25,7 @@
keywords="conda-package-handling",
classifiers=["Programming Language :: Python :: 3"],
python_requires=">=3.7",
install_requires=["conda-package-streaming >= 0.7.0"],
install_requires=["conda-package-streaming >= 0.9.0"],
extras_require={
"docs": ["furo", "sphinx", "sphinx-argparse", "myst-parser", "mdit-py-plugins>=0.3.0"],
"test": ["mock", "pytest", "pytest-cov", "pytest-mock"],
Expand Down
2 changes: 1 addition & 1 deletion src/conda_package_handling/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.1.0"
__version__ = "2.2.0"

0 comments on commit 7dbe812

Please sign in to comment.