Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to Python3 #112

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
sudo: false
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch

before_install:
- pip install codecov

install:
- "pip install -r requirements.txt"
- "python setup.py install"
- "python setup.py test"

after_success:
- codecov
3 changes: 3 additions & 0 deletions README.rst → README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Travis CI client
[![Build Status](https://travis-ci.org/travis-ci/travis-web.svg?branch=master)](https://travis-ci.org/Python3pkg/0bin)

0bin
====

Expand Down
16 changes: 8 additions & 8 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
master_doc = 'index'

# General information about the project.
project = u'0bin'
copyright = u'2012, Sam et Max'
project = '0bin'
copyright = '2012, Sam et Max'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -183,8 +183,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', '0bin.tex', u'0bin Documentation',
u'Sam et Max', 'manual'),
('index', '0bin.tex', '0bin Documentation',
'Sam et Max', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -213,8 +213,8 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', '0bin', u'0bin Documentation',
[u'Sam et Max'], 1)
('index', '0bin', '0bin Documentation',
['Sam et Max'], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -227,8 +227,8 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', '0bin', u'0bin Documentation',
u'Sam et Max', '0bin', 'One line description of project.',
('index', '0bin', '0bin Documentation',
'Sam et Max', '0bin', 'One line description of project.',
'Miscellaneous'),
]

Expand Down
Loading