From b5d0bffc457f7e5371ed57ba76c10f463884b44a Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni Date: Thu, 4 Jun 2020 00:26:20 -0500 Subject: [PATCH] drop py2.7 from CI --- .github/workflows/ci.yml | 2 +- .gitlab-ci.yml | 28 ---------------------------- pymbolic/version.py | 2 +- setup.py | 3 --- 4 files changed, 2 insertions(+), 33 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1b698b..461d645 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 - diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dbfd8e9..dc4d3a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,31 +1,3 @@ -Python 2.7: - script: - - py_version=2.7 - - EXTRA_INSTALL="numpy sympy pexpect" - - 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 - - maxima - except: - - tags - artifacts: - reports: - junit: test/pytest.xml - -Python 2.7 Conda: - script: - - CONDA_ENVIRONMENT=.test-py2.yml - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh - - ". ./build-and-test-py-project-within-miniconda.sh" - tags: - - linux - except: - - tags - artifacts: - reports: - junit: test/pytest.xml - Python 3: script: - PY_EXE=python3 diff --git a/pymbolic/version.py b/pymbolic/version.py index ea2c3fd..0371d44 100644 --- a/pymbolic/version.py +++ b/pymbolic/version.py @@ -1,3 +1,3 @@ -VERSION = (2020, 1) +VERSION = (2020, 2) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS diff --git a/setup.py b/setup.py index 1dabc53..02baa60 100644 --- a/setup.py +++ b/setup.py @@ -25,9 +25,6 @@ setup(name="pymbolic", 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 2.5', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Topic :: Scientific/Engineering', -- GitLab