Skip to content

Commit

Permalink
Update .travis.yml to run on python 3.8
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Karkit <karkucik@gmail.com>
  • Loading branch information
ekiro committed Feb 4, 2020
1 parent f62ca6e commit 150b442
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: python
python:
- "3.6"
- "3.7-dev"
- "3.7"
- "3.8"
install:
- "pip install -r requirements.test.txt"
- "python setup.py develop"
Expand Down
5 changes: 2 additions & 3 deletions haps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from haps import scopes
from haps.container import (Container, Inject, inject, base, egg,
INSTANCE_SCOPE, SINGLETON_SCOPE, scope, Egg,
PROFILES)
from haps.container import (INSTANCE_SCOPE, PROFILES, SINGLETON_SCOPE,
Container, Egg, Inject, base, egg, inject, scope)

__all__ = ['Container', 'Inject', 'inject', 'base', 'egg', 'INSTANCE_SCOPE',
'SINGLETON_SCOPE', 'scope', 'Egg', 'scopes', 'PROFILES']
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name='haps',
version='1.1.1',
version='1.1.2',
packages=find_packages(),
url='https://github.com/ekiro/haps',
license='MIT License',
Expand All @@ -23,6 +23,7 @@ def readme():
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent", "Topic :: Software Development",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable"
Expand Down

0 comments on commit 150b442

Please sign in to comment.