diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1b698b75a5c52a19086dd69f11a45d3a6cf6610..461d645b916264a9b4ee9226402d6aad18beb3f0 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 dbfd8e9fe9bb0d469d0ad612157e14495c240b3f..dc4d3a0253752dc79adf00774ed40e9137143f75 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 ea2c3fd8fd40807205fb95b617a3c80dac0fae2e..0371d44ef9ee993b69c91277455f54766aab3c1d 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 1dabc530bb430d74acfac1c252ff8d5e1769ad8d..02baa60081cc526d5f3b1ae138a2173dde727dbb 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',