diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9933fabe9d90d689f3b6a58cf4f6756cf7dd054..fde641ae99f0f75e01bd649042618723eb6b6d1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,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 - @@ -65,7 +65,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 82015b642b9c458662ed0189c52bc9f3df376e3a..2d18c7fce8392bb3c4c0de2adf2992fb441918f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,3 @@ -Python 2.7: - script: - - py_version=2.7 - - EXTRA_INSTALL="numpy scipy" - - 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 - - gfortran - except: - - tags - artifacts: - reports: - junit: test/pytest.xml - Python 3: script: - py_version=3 diff --git a/leap/version.py b/leap/version.py index 6f62bed21b8e655e05f84adad5649d80bda72799..5cea8857d9550183c2caabd0948032faac48e0ae 100644 --- a/leap/version.py +++ b/leap/version.py @@ -1,2 +1,2 @@ -VERSION = (2019, 5) +VERSION = (2020, 1) VERSION_TEXT = ".".join(str(i) for i in VERSION) diff --git a/setup.py b/setup.py index 71e94f482ab03df58ce1b16890cf8ef7fe040bf9..9a06c49fe5dbdf746febae8df7d2ec254a08da43 100644 --- a/setup.py +++ b/setup.py @@ -26,10 +26,10 @@ def main(): 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Information Analysis', 'Topic :: Scientific/Engineering :: Mathematics',