-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from shinichi-takii/feature/fix-parse-column-c…
…onstraint Fix parse for column-constraint
- Loading branch information
Showing
11 changed files
with
110 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,23 @@ | ||
# Changes | ||
## Summary | ||
<!-- Changelog format : https://keepachangelog.com/ --> | ||
|
||
### Added | ||
- {{ added-summary }} | ||
|
||
### Changed | ||
- {{ changed-summary }} | ||
|
||
### Removed | ||
- {{ removed-summary }} | ||
|
||
### Fixed | ||
- {{ fixed-summary }} | ||
|
||
|
||
## File Details | ||
### {{ file-name }} | ||
- {{ summary }} | ||
|
||
|
||
## Applicable Issues | ||
- fix # : summary... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,9 @@ | |
.DS_Store | ||
*~ | ||
|
||
# IDE | ||
.vscode | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ | |
|
||
from .ddlparse import * | ||
|
||
__copyright__ = 'Copyright (C) 2018-2019 Shinichi Takii' | ||
__version__ = '1.4.0' | ||
__copyright__ = 'Copyright (C) 2018-2020 Shinichi Takii' | ||
__version__ = '1.5.0' | ||
__license__ = 'BSD-3-Clause' | ||
__author__ = 'Shinichi Takii' | ||
__author_email__ = '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pytest>=3.6 | ||
pytest-cov | ||
tox | ||
coveralls | ||
codecov | ||
codeclimate-test-reporter | ||
pytest>=5.4.3 | ||
pytest-cov>=2.10.0 | ||
tox>=3.16.1 | ||
coveralls>=2.0.0 | ||
codecov>=2.1.7 | ||
codeclimate-test-reporter>=0.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py34,py35,py36,py37 | ||
envlist = py35,py36,py37,py38 | ||
|
||
[testenv] | ||
deps= | ||
|