Skip to content

Commit 53dfd92

Browse files
authored
Merge pull request #15 from manosim/minor-changes
Test on Python 3.5 & 3.6
2 parents 7810d38 + bfcf07c commit 53dfd92

File tree

4 files changed

+10
-22
lines changed

4 files changed

+10
-22
lines changed

.travis.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
language: python
22

3-
sudo: false
3+
python:
4+
- '2.7'
5+
- '3.4'
6+
- '3.5'
7+
- '3.6'
48

5-
env:
6-
- TOX_ENV=py27
7-
- TOX_ENV=py34
9+
sudo: false
810

911
matrix:
1012
fast_finish: true
@@ -13,14 +15,10 @@ before_install:
1315
- pip install codecov
1416

1517
install:
16-
- pip install tox
18+
- pip install -r requirements.txt
1719

1820
script:
19-
- tox -e $TOX_ENV
21+
- python runtests.py
2022

2123
after_success:
2224
- codecov
23-
24-
notifications:
25-
slack:
26-
secure: oZ8RyQDjZ5bEshG22qyETsVwBeUrnOJi42TKkL+bPteyr3TOu0D118fLsYATyUhJZL4oo/lEeV0lbswRpCYIaxES4Xo+0CbBc5keaF3jGU8N7VbjxCLMpVEATGE0r3C0xxxj3oh5JRbS8JWPCNPFyDVgZaaC/HgHHiijDk/QmF0SrRKRwH+rAzY/nqNjERboGTn+/jBSchUfy/T0ex1PpZlRj3LDiRD3SBmMRL9qPUgqCT++N/PpVSEexDgmAQ7P4uBzQizqOMpDuU5KZ4PLBzHoLMLa8UbQlWQ72E23lZHeJFzsjpUB1IqwPli1WWtmtRXgegxeAYCfV3729YbYU9/3TaU+D28fcHeEYGcC9eP9jz/Wk+adKfRcPI5Wvd2xXpaVHKYNO1jqrf9BZwndzylZyzuQQpWyJK8ilgGHRjwR+K/Q0v9TDofbsFZGb9z8XuAuwrz/ZdOgNCY/QHr/BBu5qDiuTPSZ4hfZTK3Tab19gd6RwuvbO+4Q/sOoNOPvAEY9Fp6j0RNHBX3t0+pb2kWt80zN9WstZ71Jygi9qqCpdbxzhb/9BWiWzSWGuBwHzN3HVq9EyeOJwEWdSfGSc7jeh1L+BEqV5q0GlAIfApkJjY74IRkBksrf/MZD6t9wLmJ+iz+zL60DB9/9xx5rMuekpuqAMwV94rGi8Qj5SqA=

pypiup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.2'
1+
__version__ = '0.0.3'

pypiup/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def cli(requirement, demo):
2121
print(" \ \_\ \/\_____\ \ \_\ \ \_\ \ \_____\ \ \_\ ")
2222
print(" \/_/ \/_____/ \/_/ \/_/ \/_____/ \/_/ ")
2323
print("\n PyPIup")
24-
print(" https://github.com/ekonstantinidis/pypiup")
24+
print(" https://github.com/manosim/pypiup")
2525

2626
if demo:
2727
demo_path = os.path.join(BASE_DIR, 'requirements/requirements-demo.txt')

tox.ini

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)