Skip to content

Commit

Permalink
Upgrade supported Python version, drop 3.4
Browse files Browse the repository at this point in the history
Python 3.4 is not supported anymore by 'lxml' which is
a PyEcore dependency. PyEcore only supports now Python > 3.5
  • Loading branch information
aranega committed Sep 7, 2020
1 parent 367014f commit b1b3731
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
@@ -1,8 +1,9 @@
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install --upgrade pip setuptools
- pip install --upgrade pytest pytest-cov coveralls
Expand All @@ -18,4 +19,4 @@ deploy:
distributions: "sdist bdist_wheel"
on:
tags: true
python: 3.6
python: 3.8
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -4,8 +4,8 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

if sys.version_info < (3, 3):
sys.exit('Sorry, Python < 3.3 is not supported')
if sys.version_info < (3, 5):
sys.exit('Sorry, Python < 3.5 is not supported')


class PyTest(TestCommand):
Expand Down

0 comments on commit b1b3731

Please sign in to comment.