Skip to content

Commit

Permalink
drop support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
uniqueg committed Sep 11, 2023
1 parent cfa8f0a commit 58fafee
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.8', '3.9' ]
python-version: [ '3.8', '3.9', '3.10' ]

name: unit-testing-Python-${{ matrix.python-version }}

Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.8', '3.9' ]
python-version: [ '3.8', '3.9', '3.10' ]

name: integration-testing-Python-${{ matrix.python-version }}

Expand Down
25 changes: 25 additions & 0 deletions ]
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: htsinfer
channels:
- defaults
- conda-forge
- bioconda
dependencies:
- biopython>=1.78
- coverage>=5.3
- cutadapt>=3.5, <=4.2
- flake8>=3.8.4
- kallisto>=0.46.1, <= 0.48.0
- mypy>=0.782
- numpy >=1.22, <1.25
- pandas >=1.3.5, <1.4.0
- pip>=20.2.3
- pyahocorasick>=1.4.0
- pydantic>=1.8.1, <2
- pylint>=2.4.4
- pysam>=0.16.0
- pytest>=6.1.0
- python>=3.8, <=3.10
- star>=2.7.6
- pip:
- python-semantic-release>=7.15.0
- -e .
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- pylint>=2.4.4
- pysam>=0.16.0
- pytest>=6.1.0
- python>3.6, <3.10
- python>=3.8, <=3.10
- star>=2.7.6
- pip:
- python-semantic-release>=7.15.0
Expand Down
6 changes: 3 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: htsinfer
channels:
- bioconda
- conda-forge
- defaults
- conda-forge
- bioconda
dependencies:
- biopython>=1.78
- kallisto>=0.46.1, <= 0.48.0
Expand All @@ -12,7 +12,7 @@ dependencies:
- pyahocorasick>=1.4.0
- pydantic>=1.8.1, <2
- pysam>=0.16.0
- python>3.6, <3.10
- python>=3.8, <=3.10
- star>=2.7.6
- cutadapt>=3.5, <=4.2
- pip:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Utilities",
],
Expand Down

0 comments on commit 58fafee

Please sign in to comment.