Skip to content

Commit

Permalink
port to python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
JLSteenwyk committed Oct 18, 2021
1 parent 0ad56ff commit 0e22fbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion clipkit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.6'
__version__ = '1.2.0'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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

0 comments on commit 0e22fbf

Please sign in to comment.