File tree 6 files changed +10
-31
lines changed
6 files changed +10
-31
lines changed Original file line number Diff line number Diff line change 3
3
History
4
4
-------
5
5
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)
27
7
---------------------
28
8
29
9
* First release on PyPI.
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ clean-test:
47
47
48
48
clean-dev :
49
49
rm -fr .mypy_cache/
50
+ find . -name ' *.py@neomake*.py' -exec rm -fr {} +
50
51
51
52
lint :
52
53
flake8 datalore tests
Original file line number Diff line number Diff line change 7
7
8
8
__author__ = 'Bobby'
9
9
10
- __version__ = '0.1.4 '
10
+ __version__ = '0.1.0 '
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.1.4
2
+ current_version = 0.1.0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 27
27
28
28
setup (
29
29
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 " ,
32
32
long_description = readme + '\n \n ' + history ,
33
33
author = "Bobby Larson" ,
34
34
40
40
install_requires = requirements ,
41
41
license = "GNU General Public License v3" ,
42
42
zip_safe = False ,
43
- keywords = 'datalore' ,
43
+ keywords = 'database database-connection-wrapper datalore db data-interface'
44
+ 'data-sync data-synchronization' ,
44
45
classifiers = [
45
46
'Development Status :: 2 - Pre-Alpha' ,
46
47
'Intended Audience :: Developers' ,
Original file line number Diff line number Diff line change @@ -18,8 +18,5 @@ setenv =
18
18
commands =
19
19
pip install -U pip
20
20
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
You can’t perform that action at this time.
0 commit comments