Skip to content

Commit

Permalink
tested for python 3.7 and 3.8
Browse files Browse the repository at this point in the history
This change adds Python 3.7 and 3.8 to the continuous integration.
  • Loading branch information
mristin committed Aug 22, 2020
1 parent a4c46b0 commit c21b5fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -2,6 +2,8 @@ language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip3 install -e .[dev]
- pip3 install coveralls
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -32,14 +32,16 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX'
# yapf: enable
],
license='License :: OSI Approved :: MIT License',
keywords='design-by-contract precondition postcondition validation lint',
packages=find_packages(exclude=['tests']),
install_requires=['icontract>=2.0.0,<3', 'astroid>=2.0.4,<3'],
install_requires=['icontract>=2.0.0,<3', 'astroid>=2.4.2,<3'],
extras_require={
'dev': [
# yapf: disable
Expand Down

0 comments on commit c21b5fd

Please sign in to comment.