diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a18cdaf6b582d514b262bbea40e00637fe94e67..0ba1648f6aa6a5ed5ffb9fae3dbabfc87c5659c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0101bd7ae0ece187e1b64bcdca5f12cb699b11be..91d6e59ecd2b8d0bf520d4a174ece534bc41ad7f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,26 +1,11 @@ -Python 2.7: +Python 3 Apple: script: - - py_version=2.7 - - EXTRA_INSTALL="numpy pybind11" - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - - ". ./build-and-test-py-project.sh" - tags: - - python2.7 - - linux - except: - - tags - artifacts: - reports: - junit: test/pytest.xml - -Python 2.7 Apple: - script: - - py_version=2.7 + - py_version=3 - EXTRA_INSTALL="numpy pybind11" - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - ". ./build-and-test-py-project.sh" tags: - - python2.7 + - python3 - apple except: - tags diff --git a/pymetis/version.py b/pymetis/version.py index f3824006bd9f0aaff7ecb23b34059373f443c57e..c96799398fa3a7751785dc3af48f4f5065947234 100644 --- a/pymetis/version.py +++ b/pymetis/version.py @@ -1,2 +1,2 @@ -version_tuple = (2019, 1, 1) +version_tuple = (2020, 1) version = ".".join(str(n) for n in version_tuple) diff --git a/setup.py b/setup.py index 3d55e57897307b87afb5a53c096d3d6b2583be9e..49387c3e01521faf1c3e6a8878434608212168d1 100644 --- a/setup.py +++ b/setup.py @@ -57,9 +57,6 @@ def main(): 'Programming Language :: C', 'Programming Language :: C++', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4',