Skip to content

Commit a8b0c83

Browse files
committed
v5.0.0
1 parent aca6ee3 commit a8b0c83

File tree

6 files changed

+19
-16
lines changed

6 files changed

+19
-16
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

Makefile

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@ PKG_NAMESPACE = yhttp.ext.dbmanager
22
PKG_NAME = yhttp-dbmanager
33
PYDEPS_COMMON = \
44
'coveralls' \
5-
'bddrest >= 4, < 5' \
5+
'bddrest >= 6.1, < 7' \
66
'bddcli >= 2.5.1, < 3' \
7-
'yhttp-dev >= 3.1.2'
7+
'yhttp-dev >= 3.2.4'
88

99

10-
include make/common.mk
11-
include make/venv.mk
12-
include make/install.mk
13-
include make/lint.mk
14-
include make/dist.mk
15-
include make/pypi.mk
16-
include make/test.mk
10+
# Assert the python-makelib version
11+
PYTHON_MAKELIB_VERSION_REQUIRED = 1.5.5
12+
13+
14+
# Ensure the python-makelib is installed
15+
PYTHON_MAKELIB_PATH = /usr/local/lib/python-makelib
16+
ifeq ("", "$(wildcard $(PYTHON_MAKELIB_PATH))")
17+
MAKELIB_URL = https://github.com/pylover/python-makelib
18+
$(error python-makelib is not installed. see "$(MAKELIB_URL)")
19+
endif
20+
21+
22+
# Include a proper bundle rule file.
23+
include $(PYTHON_MAKELIB_PATH)/venv-lint-test-pypi.mk

activate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
make/activate.sh
1+
/usr/local/lib/python-makelib/activate.sh

make

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
dependencies = [
21-
'yhttp >= 5.0.2, < 6',
21+
'yhttp >= 6.2, < 7',
2222
'psycopg2',
2323
]
2424

yhttp/ext/dbmanager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from .uri import DatabaseURI
66

77

8-
__version__ = '4.0.0'
8+
__version__ = '5.0.0'

0 commit comments

Comments
 (0)