Skip to content

Commit a00f587

Browse files
committed
Adjusted project
1 parent 6c46966 commit a00f587

File tree

6 files changed

+10
-31
lines changed

6 files changed

+10
-31
lines changed

HISTORY.rst

+1-21
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,7 @@
33
History
44
-------
55

6-
0.1.4 (2018-06-25)
7-
---------------------
8-
9-
* Fixed flake8 complaints, correctly configureds travis-ci
10-
11-
0.1.3 (2018-06-25)
12-
---------------------
13-
14-
* Fixed the pyenv interference with travis-ci builds
15-
16-
0.1.2 (2018-06-25)
17-
---------------------
18-
19-
* Added support for Python 3.6
20-
21-
0.1.1 (2018-06-25)
22-
---------------------
23-
24-
* Setup CI/CD
25-
26-
0.1.0 (2018-06-19)
6+
0.1.0 (2018-07-02)
277
---------------------
288

299
* First release on PyPI.

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ clean-test:
4747

4848
clean-dev:
4949
rm -fr .mypy_cache/
50+
find . -name '*.py@neomake*.py' -exec rm -fr {} +
5051

5152
lint:
5253
flake8 datalore tests

datalore/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
__author__ = 'Bobby'
99
__email__ = '[email protected]'
10-
__version__ = '0.1.4'
10+
__version__ = '0.1.0'

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.4
2+
current_version = 0.1.0
33
commit = True
44
tag = True
55

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
setup(
2929
name='datalore',
30-
version='0.1.4',
31-
description="A framework for AI to explore bays",
30+
version='0.1.0',
31+
description="Data Interface Abstraction Library",
3232
long_description=readme + '\n\n' + history,
3333
author="Bobby Larson",
3434
author_email='[email protected]',
@@ -40,7 +40,8 @@
4040
install_requires=requirements,
4141
license="GNU General Public License v3",
4242
zip_safe=False,
43-
keywords='datalore',
43+
keywords='database database-connection-wrapper datalore db data-interface'
44+
'data-sync data-synchronization',
4445
classifiers=[
4546
'Development Status :: 2 - Pre-Alpha',
4647
'Intended Audience :: Developers',

tox.ini

+2-5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,5 @@ setenv =
1818
commands =
1919
pip install -U pip
2020
py.test --basetemp={envtmpdir}
21-
22-
; If you want to make tox run the tests with the same versions, create a
23-
; requirements.txt with the pinned versions and uncomment the following lines:
24-
; deps =
25-
; -r{toxinidir}/requirements.txt
21+
deps =
22+
-r{toxinidir}/requirements.txt

0 commit comments

Comments
 (0)