Skip to content

Commit

Permalink
Merge pull request #9 from thombashi/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
thombashi committed Jul 17, 2016
2 parents ee4bda7 + 97080e7 commit edd6129
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ language: python

matrix:
include:
- python: 2.6
env: TOXENV=python2.6
- python: 2.7
env: TOXENV=python2.7
- python: 3.3
Expand Down
4 changes: 2 additions & 2 deletions docs/make_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def write_examples(maker):
maker.write_chapter("For more information")
maker.write_line_list([
"More examples are available at ",
"http://%s.readthedocs.io/en/latest/pages/%s/index.html" % (
"http://{:s}.readthedocs.io/en/latest/pages/{:s}/index.html".format(
PROJECT_NAME.lower(), maker.examples_dir_name),
])

Expand All @@ -49,7 +49,7 @@ def main():
maker.set_indent_level(0)
maker.write_chapter("Documentation")
maker.write_line_list([
"http://%s.readthedocs.org/en/latest/" % (PROJECT_NAME.lower()),
"http://{:s}.readthedocs.org/en/latest/".format(PROJECT_NAME.lower()),
])

return 0
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
click
DataProperty>=0.5.4
DataProperty>=0.7.2
path.py
SimpleSQLite>=0.4.1
SimpleSQLite>=0.4.2
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
Expand Down
2 changes: 1 addition & 1 deletion sqlitebiter/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.1.3"
VERSION = "0.1.4"
6 changes: 3 additions & 3 deletions sqlitebiter/sqlitebiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def file(files, output_path):

try:
for tabledata in loader.load():
click.echo("convert '%s' to '%s' table" % (
click.echo("convert '{:s}' to '{:s}' table".format(
file_path, tabledata.table_name))
con.create_table_from_tabledata(tabledata)
convert_count += 1
Expand Down Expand Up @@ -127,8 +127,8 @@ def gs(credentials, title, output_path):
loader.title = title

for tabledata in loader.load():
click.echo(
"convert '%s' to '%s' table" % (title, tabledata.table_name))
click.echo("convert '{:s}' to '{:s}' table".format(
title, tabledata.table_name))
con.create_table_from_tabledata(tabledata)

return 0
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = python{2.6,2.7,3.3,3.4,3.5}
envlist = python{2.7,3.3,3.4,3.5}

[testenv]
deps =
Expand Down

0 comments on commit edd6129

Please sign in to comment.