diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfe74bf5e90f4afc7bdbabdef55f0622b726e055..5cfd99d79782014f84e360827a2fb06e85976d76 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 1dfa95e3a7fdefdd432cad70ffe9967cd3a08dab..cad6284bc3678b49f9a0f0bdcedb82510c1eb891 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,3 @@ -Python 2.7: - script: - - py_version=2.7 - - EXTRA_INSTALL=numpy - - 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/setup.py b/setup.py index 706c6ed13389d9f2e1997a4035a542bffaf955d8..28e8dd262a4598b7fa73314169f71cbae3a38d9a 100644 --- a/setup.py +++ b/setup.py @@ -25,10 +25,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 :: Mathematics', 'Topic :: Scientific/Engineering :: Information Analysis',