Skip to content

Commit

Permalink
Include tests data into package and migrate to python3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tataranovich committed Nov 5, 2019
1 parent 13f7b72 commit 357e04a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tests/data/sample.zip
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="jtv2xmltv",
version="0.2.0",
version="0.2.1",
packages=find_packages(),
entry_points={
'console_scripts': [
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ max-line-length=120

# tox settings
[tox]
envlist = py27,py35,lint
envlist = py27,py37,lint

[testenv]
deps = -rrequirements-dev.txt
Expand All @@ -29,11 +29,11 @@ commands =
[testenv:py27]
basepython = python2.7

[testenv:py35]
basepython = python3.5
[testenv:py37]
basepython = python3.7

[testenv:lint]
basepython = python3.5
basepython = python3.7
commands =
pylint -E --rcfile=tox.ini jtv2xmltv tests
pycodestyle jtv2xmltv tests

0 comments on commit 357e04a

Please sign in to comment.