From f7db265fc73956473871fcaeafec0b4e171e02ad Mon Sep 17 00:00:00 2001 From: Daniel Holth Date: Mon, 21 Nov 2022 06:28:24 -0500 Subject: [PATCH] require conda-package-streaming bugfix (#162) * bumped version to 2.0.1 * fix rever $PROJECT (strip whitespace) * require conda-package-streaming>=0.7.0 --- .authors.yml | 2 +- CHANGELOG.md | 13 +++++++++++++ conda.recipe/meta.yaml | 2 +- requirements.txt | 2 +- rever.xsh | 2 +- setup.py | 2 +- src/conda_package_handling/__init__.py | 2 +- 7 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.authors.yml b/.authors.yml index d54142be..9de9cb17 100644 --- a/.authors.yml +++ b/.authors.yml @@ -86,7 +86,7 @@ first_commit: 2022-02-17 10:23:53 - name: Daniel Holth email: dholth@anaconda.com - num_commits: 12 + num_commits: 17 first_commit: 2021-08-20 21:11:50 github: dholth - name: Vadim Zayakin diff --git a/CHANGELOG.md b/CHANGELOG.md index 57c15584..5f955346 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ [//]: # (current developments) +## 2.0.1 (2022-11-18) + +### Bug fixes + +* Require conda-package-streaming 0.7.0 for Windows c:\ vs C:\ check, pypy + support + +### Contributors + +* @dholth + + + ## 2.0.0 (2022-11-17) ### Enhancements diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 7655382d..e50e33c3 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -25,7 +25,7 @@ requirements: - wheel run: - python - - conda-package-streaming >=0.6.0 + - conda-package-streaming >=0.7.0 test: source_files: diff --git a/requirements.txt b/requirements.txt index 18676580..700c6672 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # used in sphinx documentation build -conda-package-streaming>=0.6.0 +conda-package-streaming>=0.7.0 # docs furo sphinx diff --git a/rever.xsh b/rever.xsh index 94c489de..a2e4cbc4 100644 --- a/rever.xsh +++ b/rever.xsh @@ -1,7 +1,7 @@ $ACTIVITIES = ["version_bump", "authors", "changelog"] # Basic settings -$PROJECT = $GITHUB_REPO = $(basename $(git remote get-url origin)).split('.')[0] +$PROJECT = $GITHUB_REPO = $(basename $(git remote get-url origin)).split('.')[0].strip() $GITHUB_ORG = "conda" # Authors settings diff --git a/setup.py b/setup.py index 01eedcda..35764630 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ keywords="conda-package-handling", classifiers=["Programming Language :: Python :: 3"], python_requires=">=3.7", - install_requires=["conda-package-streaming >= 0.6.0"], + install_requires=["conda-package-streaming >= 0.7.0"], extras_require={ "docs": ["furo", "sphinx", "myst-parser", "mdit-py-plugins>=0.3.0"], "test": ["mock", "pytest", "pytest-cov", "pytest-mock"], diff --git a/src/conda_package_handling/__init__.py b/src/conda_package_handling/__init__.py index 8c0d5d5b..159d48b8 100644 --- a/src/conda_package_handling/__init__.py +++ b/src/conda_package_handling/__init__.py @@ -1 +1 @@ -__version__ = "2.0.0" +__version__ = "2.0.1"