Skip to content

Commit 944374b

Browse files
committed
Last 0.3.3b0 commit
1 parent 1a320b5 commit 944374b

7 files changed

Lines changed: 9 additions & 8 deletions

File tree

.zenodo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"description": "Python client for HAPI",
33
"license": "other-open",
44
"title": "hapi-server/client-python:",
5-
"version": "0.3.2b0",
5+
"version": "0.3.3b0",
66
"upload_type": "software",
77
"publication_date": "2021-10-06",
88
"creators": [

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,6 @@ v0.3.0:
131131
2026-07-08 -- 94-cache-files-can-be-corrupted-by-interrupted-writes
132132
v0.3.1:
133133
2026-07-08 -- 80-subset-error-message-wrong-when-duplicate-parameters
134-
v0.3.2b0:
134+
v0.3.2:
135+
2026-07-08 -- Date parsing warning https://github.com/hapi-server/client-python/pull/104
136+
v0.3.3b0:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ PYTHONVERS=python3.14 python3.13 python3.12 python3.11 python3.10 python3.9 pyth
4444

4545
# VERSION is updated in "make version-update" step and derived
4646
# from CHANGES.txt. Do not edit.
47-
VERSION=0.3.2b0
47+
VERSION=0.3.3b0
4848
SHELL:= /bin/bash
4949

5050
LONG_TESTS=false
@@ -172,7 +172,7 @@ endif
172172
package:
173173
make clean
174174
make version-update
175-
python setup.py sdist
175+
python -m build --sdist
176176

177177
package-test-all:
178178
@ for version in $(PYTHONVERS) ; do \

hapiclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Allow "from hapiclient import HAPIError"
1414
from hapiclient.util import HAPIError
1515

16-
__version__ = '0.3.2b0'
16+
__version__ = '0.3.3b0'
1717

1818
import sys
1919
import platform

hapiclient/hapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def hapiopts():
4545
def hapi(*args, **kwargs):
4646
"""Request data from a HAPI server.
4747
48-
Version: 0.3.2b0
48+
Version: 0.3.3b0
4949
5050
5151
Examples

misc/version.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
fnames = {
2727
"Makefile": r"^(VERSION=)(.*)$",
28-
"setup.py": r"^(\s*version=')(.*)(',\s*)$",
2928
"pyproject.toml": r'^(version = ")(.*)("$)',
3029
"hapiclient/hapi.py": r"^(\s*Version: )(.*)$",
3130
"hapiclient/__init__.py": r"^(__version__ = ')(.*)('$)",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hapiclient"
7-
version = "0.3.2b0"
7+
version = "0.3.3b0"
88
authors = [
99
{ name = "Bob Weigel", email = "rweigel@gmu.edu" }
1010
]

0 commit comments

Comments
 (0)