Skip to content

Commit

Permalink
Removing python 3.6 from supported versions due to asyncio 's incompa…
Browse files Browse the repository at this point in the history
…tibility.
  • Loading branch information
lucventurini committed Apr 1, 2021
1 parent 373fc95 commit bc270f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: [ 3.8, 3.7, 3.6 ]
python-version: [ 3.7, 3.8, 3.9 ]
os: [ubuntu-latest, macos-latest]
steps:
- name: Install system development tools
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@


requirements = [line.rstrip() for line in open("requirements.txt", "rt")]
if sys.version_info.minor < 7:
requirements.append(["dataclasses"])


extensions = [Extension("Mikado.utilities.overlap",
Expand Down Expand Up @@ -58,7 +56,7 @@

setup(
name="Mikado",
python_requires=">=3.6",
python_requires=">3.6",
version="2.2.3",
description="A Python3 annotation program to select the best gene model in each locus",
long_description=long_description,
Expand All @@ -74,7 +72,6 @@
"Operating System :: POSIX :: Linux",
"Framework :: Pytest",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.6",
'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: 3.8",
'Programming Language :: Python :: 3.9'
Expand Down

0 comments on commit bc270f4

Please sign in to comment.