From 0e22fbf42a4479c9023cfa5330631ac52c94be59 Mon Sep 17 00:00:00 2001 From: "Jacob L. Steenwyk" Date: Mon, 18 Oct 2021 07:47:24 -0500 Subject: [PATCH] port to python 3.9 --- .github/workflows/ci.yml | 8 ++++---- clipkit/version.py | 2 +- setup.py | 5 +++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ea30e6..f2f3671 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: [3.6, 3.8] + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@master - name: Set up Python ${{ matrix.python-version }} @@ -26,13 +26,13 @@ jobs: test-full: runs-on: macos-latest env: - PYTHON: '3.7' + PYTHON: '3.9' steps: - uses: actions/checkout@master - name: Setup Python uses: actions/setup-python@master with: - python-version: 3.7 + python-version: 3.9 - name: Install dependencies run: | pip install -r requirements.txt @@ -72,7 +72,7 @@ jobs: - name: Setup Python uses: actions/setup-python@master with: - python-version: 3.7 + python-version: 3.9 - name: Install pipenv uses: dschep/install-pipenv-action@v1 - name: Build docs diff --git a/clipkit/version.py b/clipkit/version.py index 464ea23..e916218 100644 --- a/clipkit/version.py +++ b/clipkit/version.py @@ -1 +1 @@ -__version__ = '1.1.6' \ No newline at end of file +__version__ = '1.2.0' \ No newline at end of file diff --git a/setup.py b/setup.py index 1dcd20c..99f61f2 100644 --- a/setup.py +++ b/setup.py @@ -15,10 +15,11 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Scientific/Engineering', ] -REQUIRES = ["biopython>=1.79", "numpy>=1.18", "tqdm>=4.45"] +REQUIRES = ["biopython>=1.79", "numpy>=1.18", "tqdm>=4.45", "cython"] setup( name="clipkit", @@ -38,5 +39,5 @@ ## push new version to pypi # rm -rf dist -# python setup.py sdist bdist_wheel --universal +# python3 setup.py sdist bdist_wheel --universal # twine upload dist/* -r pypi \ No newline at end of file