Skip to content

Commit

Permalink
Merge pull request #33 from nameko/upgrade
Browse files Browse the repository at this point in the history
Upgrade
  • Loading branch information
iky committed Apr 25, 2019
2 parents af5b3fc + 47ec08d commit 31d7ba0
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 12 deletions.
37 changes: 30 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,44 @@
language: python

dist: xenial

services:
- rabbitmq
- docker

before_install:
- docker run -d --rm -p 15672:15672 -p 5672:5672 -p 5671:5671 --name nameko-rabbitmq nameko/nameko-rabbitmq:3.6.6

stages:
- test

python:
- '3.4'
- '3.5'
- '3.6'
- nightly
jobs:
include:
- python: 3.6
env: DEPS="--pre nameko"
- python: 3.6
env: DEPS="nameko>=2.12.0"
- python: 3.6
env: DEPS="nameko==2.11.0"
- python: 3.6
env: DEPS="nameko==2.10.0"
- python: 3.6
env: DEPS="nameko==2.9.1"
- python: 3.6
env: DEPS="nameko==2.8.5"
- python: 3.7
env: DEPS="nameko>=2.12.0"
- python: 3.5
env: DEPS="nameko>=2.12.0"

matrix:
allow_failures:
- python: nightly
- python: 3.6
env: DEPS="--pre nameko"

install:
- pip install -U pip setuptools
- pip install -U -e ".[dev]"
- pip install -U $DEPS

script:
- make test
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
url='https://github.com/nameko/nameko-tracer',
packages=find_packages(exclude=['test', 'test.*']),
install_requires=[
"nameko>=2.2.0",
"nameko>=2.8.5",
],
extras_require={
'dev': [
"coverage==4.4.1",
"flake8==3.4.1",
"pylint==2.2.2",
"pytest==3.2.0",
"coverage",
"flake8",
"pylint",
"pytest",
]
},
dependency_links=[],
Expand Down

0 comments on commit 31d7ba0

Please sign in to comment.