Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
also allow completion for zsh
  • Loading branch information
k-dominik committed Dec 11, 2024
1 parent ed1e936 commit f2f54bd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.3
current_version = 0.5.0
commit = False
tag = False
tag_name = {new_version}
Expand Down
6 changes: 3 additions & 3 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ build:
# to enable autocomplete in the package
# This fixes the windows build to enable testing via conda build
- mkdir -p $PREFIX/etc/conda/activate.d # [not win]
- echo 'eval "$(register-python-argcomplete publish-conda-stack -s bash)"' > $PREFIX/etc/conda/activate.d/activate_publish-conda-stack.sh # [not win]
- echo 'eval "$(register-python-argcomplete publish-conda-stack)"' > $PREFIX/etc/conda/activate.d/activate_publish-conda-stack.sh # [not win]
entry_points:
{% for ep in data['entry_points']['console_scripts'] %}
- {{ ep }}
{% endfor %}
requirements:
build:
- python >=3.6
- python >=3.9
- pip
run:
- python >=3.6
- python >=3.9
# dependencies are defined in setup.py
{% for dep in data['install_requires'] %}
- {{ dep.lower() }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="publish-conda-stack",
version="0.4.3",
version="0.5.0",
author="Stuart Berg, Carsten Haubold",
author_email="[email protected]",
license="MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/publish_conda_stack/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.3"
__version__ = "0.5.0"

0 comments on commit f2f54bd

Please sign in to comment.