Skip to content

Commit

Permalink
0.0.15 release
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed Jul 10, 2020
2 parents 82930e9 + e0fb2e6 commit 854c4b3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

0.0.15 (2020-07-10)
-------------------

* FIX: CI tests failed due to dependency issue in Python 3.4, see issue #72.

0.0.14 (2019-05-21)
-------------------

Expand Down
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
)
import os
from glob import glob
from sys import platform
from sys import platform, version_info


# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Expand All @@ -46,7 +46,7 @@


# Bump version HERE!
_version_ = '0.0.14'
_version_ = '0.0.15'


# List all versions of Python which are supported
Expand All @@ -66,6 +66,13 @@
raise SystemExit('You are already running Windows. No need for this package!')


# Python 3.4 dependency / CI fix
pls = 'python-language-server'
assert version_info.major == 3
if version_info.minor <= 4:
pls += '<0.32.0'


setup(
name = 'zugbruecke',
packages = find_packages('src'),
Expand All @@ -84,7 +91,7 @@
install_requires = [],
extras_require = {'dev': [
'pytest',
'python-language-server',
pls,
'setuptools',
'Sphinx',
'sphinx_rtd_theme',
Expand Down

0 comments on commit 854c4b3

Please sign in to comment.