File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11# Test hapi() data read functions using repository code:
22# make repository-test PYTHON=_PYTHON_ # Test using _PYTHON_ (e.g, python3.6)
3- # make repository-test-all # Test on all versions in $(PYTHONVERS) var below
3+ # make repository-test-all # Test on all versions in $(PYTHONVERS) var below
44#
55# Beta releases:
66# 1. Run make repository-test-all
2727# git commit -a -m "Update version for next release"
2828# This will update the version information in the repository to indicate it
2929# is now in a pre-release state.
30- # 5. Manually create a relase at https://github.com/hapi-server/client-python/releases
30+ # 5. Manually create a release at https://github.com/hapi-server/client-python/releases
3131# (could do this automatically using https://stackoverflow.com/questions/21214562/how-to-release-versions-on-github-through-the-command-line)
3232# Notes:
3333# 1. make repository-test tests with Anaconda virtual environment
@@ -49,7 +49,7 @@ PYTHONVERS=python3.13 python3.12 python3.11 python3.10 python3.9 python3.8 pytho
4949
5050# VERSION is updated in "make version-update" step and derived
5151# from CHANGES.txt. Do not edit.
52- VERSION =0.2.6
52+ VERSION =0.2.7b1
5353SHELL: = /bin/bash
5454# SHELL:= /c/Windows/system32/cmd
5555
Original file line number Diff line number Diff line change 1010# Allow "from hapiclient import HAPIError"
1111from hapiclient .util import HAPIError
1212
13- __version__ = '0.2.6 '
13+ __version__ = '0.2.7b1 '
1414
1515import sys
1616if sys .version_info [0 ] < 3 :
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ def hapiopts():
176176def hapi (* args , ** kwargs ):
177177 """Request data from a HAPI server.
178178
179- Version: 0.2.6
179+ Version: 0.2.7b1
180180
181181
182182 Examples
Original file line number Diff line number Diff line change 2929# version is modified by misc/version.py (executed from Makefile). Do not edit.
3030setup (
3131 name = 'hapiclient' ,
32- version = '0.2.6 ' ,
32+ version = '0.2.7b1 ' ,
3333 author = 'Bob Weigel' ,
3434 author_email = 'rweigel@gmu.edu' ,
3535 packages = find_packages (),
You can’t perform that action at this time.
0 commit comments