diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fc68b408..0d1f118f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,49 +8,41 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-18.04 + - os: ubuntu-20.04 compiler: gcc - version: "7" - python-version: 3.5 - castxml: "castxml" - castxml-epic: 0 - cppstd: "-std=c++98" - - - os: ubuntu-18.04 - compiler: gcc - version: "7" + version: "9" python-version: 3.6 castxml: "castxml" castxml-epic: 0 cppstd: "-std=c++98" - - os: ubuntu-18.04 + - os: ubuntu-20.04 compiler: gcc - version: "7" + version: "9" python-version: 3.7 castxml: "castxml" castxml-epic: 0 cppstd: "-std=c++98" - - os: ubuntu-18.04 + - os: ubuntu-20.04 compiler: gcc - version: "7" + version: "9" python-version: 3.8 castxml: "castxml" castxml-epic: 0 cppstd: "-std=c++98" - - os: ubuntu-18.04 + - os: ubuntu-20.04 compiler: gcc - version: "7" + version: "9" python-version: 3.8 castxml: "castxml" castxml-epic: 1 cppstd: "-std=c++98" - - os: ubuntu-18.04 + - os: ubuntu-20.04 compiler: gcc - version: "7" + version: "9" python-version: 3.8 castxml: "castxml" castxml-epic: 1 @@ -73,7 +65,7 @@ jobs: - name: Display Python version run: python -c "import sys; print(sys.version)" - name: Setup castxml for Linux - if: matrix.os == 'ubuntu-18.04' && matrix.castxml == 'castxml' + if: matrix.os == 'ubuntu-20.04' && matrix.castxml == 'castxml' run: | wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/bdbb67a10c5f8d1b738cd19cb074f409d4803e8077cb8c1072ef4eaf738fa871a73643f9c8282d58cae28d188df842c82ad6620b6d590b0396a0172a27438dce/download | tar zxf - -C ~/ - name: Setup castxml for Mac @@ -81,8 +73,8 @@ jobs: run: | wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/5d937e938f7b882a3a3e7941e68f8312d0898aaf2082e00003dd362b1ba70b98b0a08706a1be28e71652a6a0f1e66f89768b5eaa20e5a100592d5b3deefec3f0/download | tar zxf - -C ~/ - name: Setup castxml config - if: matrix.compiler == 'gcc' && matrix.version == '7' - run: mv unittests/configs/gcc7.cfg unittests/xml_generator.cfg; + if: matrix.compiler == 'gcc' && matrix.version == '9' + run: mv unittests/configs/gcc9.cfg unittests/xml_generator.cfg; - name: Install Python lib and test libs run: | pip install .[test] diff --git a/CHANGELOG.md b/CHANGELOG.md index 864db3b9..21b708ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changes ======= +Next version +------------ + +1. Drop support for ```Python 3.5``` + Version 2.2.1 ------------- diff --git a/README.rst b/README.rst index cf2dc59b..e23d19c8 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ Install instructions can be found `here