Skip to content

Commit

Permalink
require conda-package-streaming bugfix (#162)
Browse files Browse the repository at this point in the history
* bumped version to 2.0.1
* fix rever $PROJECT (strip whitespace)
* require conda-package-streaming>=0.7.0
  • Loading branch information
dholth authored Nov 21, 2022
1 parent 8889edb commit f7db265
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
first_commit: 2022-02-17 10:23:53
- name: Daniel Holth
email: [email protected]
num_commits: 12
num_commits: 17
first_commit: 2021-08-20 21:11:50
github: dholth
- name: Vadim Zayakin
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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.6.0
- conda-package-streaming >=0.7.0

test:
source_files:
Expand Down
2 changes: 1 addition & 1 deletion 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.6.0
conda-package-streaming>=0.7.0
# docs
furo
sphinx
Expand Down
2 changes: 1 addition & 1 deletion rever.xsh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
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.0.0"
__version__ = "2.0.1"

0 comments on commit f7db265

Please sign in to comment.