Skip to content

Commit 60764dc

Browse files
committed
end support for python 3.7
1 parent 80f63d4 commit 60764dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
python: [3.7, 3.8, 3.9 ]
25+
python: [3.8, 3.9 ]
2626
os: [ubuntu-20.04]
2727
name: Test on Python ${{ matrix.python }}
2828
steps:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup python
1515
uses: actions/setup-python@v1
1616
with:
17-
python-version: '3.7'
17+
python-version: '3.8'
1818
architecture: x64
1919
- name: Install dependencies
2020
run: pip install -r dev-requirements.txt

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(path):
2020
long_description=long_description,
2121
long_description_content_type='text/markdown',
2222
keywords='kallisto bustools',
23-
python_requires='>=3.7',
23+
python_requires='>=3.8',
2424
license='BSD',
2525
packages=find_packages(exclude=('tests', 'tests.*', 'docs')),
2626
zip_safe=False,

0 commit comments

Comments
 (0)