Browse Source

Require Storm version 1.4.1

refactoring
Matthias Volk 5 years ago
parent
commit
f1ec4763c8
  1. 8
      .travis.yml
  2. 4
      setup.py

8
.travis.yml

@ -48,13 +48,13 @@ jobs:
# Docker Storm stable
- os: linux
compiler: gcc
env: TASK=Test CONFIG=Release DOCKER=storm:1.4.0 PYTHON=python3
env: TASK=Test CONFIG=Release DOCKER=storm:1.4.1 PYTHON=python3
script:
travis/build.sh
# Docker Storm stable in debug mode
- os: linux
compiler: gcc
env: TASK=Test CONFIG=Debug DOCKER=storm:1.4.0-debug PYTHON=python3
env: TASK=Test CONFIG=Debug DOCKER=storm:1.4.1-debug PYTHON=python3
script:
travis/build.sh
# Documentation
@ -76,6 +76,6 @@ jobs:
# Allow failures of stable versions as new features might have been added
allow_failures:
- os: linux
env: TASK=Test CONFIG=Release DOCKER=storm:1.4.0 PYTHON=python3
env: TASK=Test CONFIG=Release DOCKER=storm:1.4.1 PYTHON=python3
- os: linux
env: TASK=Test CONFIG=Debug DOCKER=storm:1.4.0-debug PYTHON=python3
env: TASK=Test CONFIG=Debug DOCKER=storm:1.4.1-debug PYTHON=python3

4
setup.py

@ -14,7 +14,7 @@ if sys.version_info[0] == 2:
sys.exit('Sorry, Python 2.x is not supported')
# Minimal storm version required
storm_min_version = "1.4.0"
storm_min_version = "1.4.1"
# Get the long description from the README file
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
@ -235,7 +235,7 @@ setup(
cmdclass={'build_ext': CMakeBuild},
zip_safe=False,
install_requires=['pycarl>=2.0.3'],
install_requires=['pycarl>=2.0.4'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
python_requires='>=3',

Loading…
Cancel
Save