Skip to content

Commit 7f79f9d

Browse files
authored
Merge pull request savon-noir#83 from ErwinJanssen/more-python-versions
More supported Python versions (3.5 and 3.6)
2 parents 9cf3a54 + 99c3a28 commit 7f79f9d

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.travis.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ python:
55
- "2.7"
66
- "3.3"
77
- "3.4"
8+
- "3.5"
9+
- "3.6"
810
# command to install dependencies
911
env:
1012
# - MONGO_VERSION=1.2.12
@@ -18,11 +20,11 @@ before_install:
1820
- "sudo apt-get update -qq"
1921
- "sudo apt-get install nmap -qq"
2022
install:
21-
- "pip install pep8 --use-mirrors"
22-
- "pip install pyflakes --use-mirrors"
23-
# - "pip install boto --use-mirrors" # disabled: since boto not supporting py3
24-
# - "pip install pymongo sqlalchemy MySQL-python --use-mirrors" # disabled MySQL-python (not py3 compatible)
25-
- "pip install pymongo sqlalchemy pymysql --use-mirrors"
23+
- "pip install pep8"
24+
- "pip install pyflakes"
25+
# - "pip install boto" # disabled: since boto not supporting py3
26+
# - "pip install pymongo sqlalchemy MySQL-python" # disabled MySQL-python (not py3 compatible)
27+
- "pip install pymongo sqlalchemy pymysql"
2628
- "pip install coveralls"
2729
- "python setup.py install"
2830
before_script:
@@ -36,6 +38,6 @@ deploy:
3638
on:
3739
tags: true
3840
provider: pypi
39-
user: savon_noir
41+
user: savon_noir
4042
password:
4143
secure: WiMQsq+IMzAsS+cNKyKT7u7PlwGwkH0t2eoBitP0ckIw6kNWlbM/HCCm6aa9Ns9LpIzI82x26Vg77bu+yiMxUzZPS8pxCJXL9fFGs7Qc6VC9S0iHUX+FCkhFEFvPl35YRGFuY0YQyF2oj9vZPPFFmXzY2JSOBHxVevgdsrw1BQM=

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,15 @@ The libnmap code is tested against the following python interpreters:
6666
- Python 2.7
6767
- Python 3.3
6868
- Python 3.4
69+
- Python 3.5
70+
- Python 3.6
6971

7072
Install
7173
-------
7274

7375
You can install libnmap via pip::
7476

75-
pip install python-libnmap
77+
pip install python-libnmap
7678

7779
or via git::
7880

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,7 @@
2323
"Programming Language :: Python :: 3",
2424
"Programming Language :: Python :: 3.3",
2525
"Programming Language :: Python :: 3.4",
26+
"Programming Language :: Python :: 3.5",
27+
"Programming Language :: Python :: 3.6",
2628
"Topic :: System :: Networking"]
2729
)

0 commit comments

Comments
 (0)