Skip to content

Commit

Permalink
Merge branch 'release/0.30.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
lasote committed Nov 5, 2019
2 parents 6f49df6 + 049a443 commit ed932d7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
cover

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
23 changes: 12 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,7 @@ jobs:
env: TOXENV=py37-conan-latest
dist: xenial

- stage: Conan Development - Linux
if: branch != master
python: 2.7
env: TOXENV=py27-conan-dev
- python: 3.7
if: branch != master
env: TOXENV=py37-conan-dev
dist: xenial

# Macos is slow, only if everything has passed
- stage: Macos - all Conan versions
- stage: Conan Latest - Macos
language: generic
os: osx
osx_image: xcode8.3
Expand All @@ -33,6 +23,17 @@ jobs:
osx_image: xcode8.3
env: PYVER=py37 TOXENV=py37-conan-latest

- stage: Conan Development - Linux
if: branch != master AND branch !~ /release*/
python: 2.7
env: TOXENV=py27-conan-dev
- python: 3.7
if: branch != master AND branch !~ /release*/
env: TOXENV=py37-conan-dev
dist: xenial



install:
- .ci/travis/install.sh

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ Or you can directly iterate the builds to do any change. EX: Remove the GCC 4.6
filtered_builds = []
for settings, options, env_vars, build_requires, reference in builder.items:
if settings["compiler.version"] != "4.6" and settings["build_type"] != "Debug":
filtered_builds.append([settings, options, env_vars, build_requires])
filtered_builds.append([settings, options, env_vars, build_requires, reference])
builder.builds = filtered_builds
builder.run()

Expand Down
4 changes: 2 additions & 2 deletions cpt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

__version__ = '0.30.0'
NEWEST_CONAN_SUPPORTED = "1.21.0-dev"
__version__ = '0.30.1'
NEWEST_CONAN_SUPPORTED = "1.20.100"


def get_client_version():
Expand Down
2 changes: 1 addition & 1 deletion cpt/builds_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def get_linux_gcc_builds(gcc_versions, archs, shared_option_name, pure_c, build_
else:
ret.append(get_build("gcc", arch, build_type_it, gcc_version, None,
None, options, reference))
return ret
return ret


def get_linux_clang_builds(clang_versions, archs, shared_option_name, pure_c, build_types, cppstds,
Expand Down

0 comments on commit ed932d7

Please sign in to comment.