Skip to content

Release v0.10.9 #361

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

Open
wants to merge 9 commits into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.10.8
current_version = 0.10.9
commit = True

[bumpversion:file:setup.py]
Expand Down
32 changes: 0 additions & 32 deletions .github/workflows/test-conda-build-39.yml

This file was deleted.

9 changes: 7 additions & 2 deletions .github/workflows/test-conda-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test conda
name: test conda build
on:
push:
branches:
Expand All @@ -23,10 +23,15 @@ jobs:
- name: "Install Conda development packages"
run: |
conda install conda-build
conda install conda-verify
conda install -c anaconda anaconda-client
- name: "Verify Conda Build Installation"
run: |
conda list | grep conda-build
- name: "Build and upload package"
run: |
mkdir conda-build
conda build . --no-build-id --output-folder ./conda-build -c conda-forge
ls conda-build/**/netzoopy*.bz2
conda install "urllib3<2"
conda convert -p all ./conda-build/**/netzoopy*.bz2 --output-dir ./conda-build --dry-run
conda convert -p all "./conda-build/**/netzoopy*.bz2" --output-dir ./conda-build --dry-run
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ Please report any issues to the [issues page](https://github.com/netZoo/netZooPy

Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms.

Latest version: 0.10.8
Latest version: 0.10.9
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: netzoopy
version: 0.10.8
version: 0.10.9

source:
path: ..
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = u'netZoo'

# The short X.Y version
__version__ = "0.10.8"
__version__ = "0.10.9"
version = ".".join(__version__.split(".")[:2])
# The full version, including alpha/beta/rc tags
release = __version__
Expand Down
2 changes: 1 addition & 1 deletion netZooPy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
from netZooPy import sambar
from netZooPy import bonobo

__version__ = "0.10.8"
__version__ = "0.10.9"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='netZooPy',
version='0.10.8',
version='0.10.9',
description='Python implementation of netZoo',
url='https://github.com/netZoo/netZooPy',
author='netZoo team',
Expand Down