Skip to content

Commit

Permalink
Added support for Python 3.11 (#47)
Browse files Browse the repository at this point in the history
* testing 3.11

* changed pytest to 8.1.1

* changed pluggy to 8.1.1

* testing biopython 1.82

* removing py from requirements.txt

* updated setup.py and change log for support for python version 3.11
  • Loading branch information
JLSteenwyk authored Apr 29, 2024
1 parent ac34a56 commit 96eb403
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .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.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion clipkit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.2.6"
__version__ = "2.3.0"
3 changes: 3 additions & 0 deletions docs/change_log/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Change log

Major changes to ClipKIT are summarized here.

**2.3.0**
Added support for Python version 3.11

**2.2.3**
Fixed gap character handling. The help message was incongruent
with what was happening underneath the hood.
Expand Down
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
appdirs==1.4.3
attrs==19.3.0
biopython==1.81
biopython==1.82
click==7.1.2
importlib-metadata==1.6.0
more-itertools==8.2.0
numpy==1.24.0
packaging==20.3
pathspec==0.8.0
pluggy==0.13.1
py==1.8.1
pluggy==1.5.0
pyparsing==2.4.7
pytest==7.2.2
pytest==8.1.1
pytest-mock==3.0.0
regex==2020.5.7
six==1.14.0
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]

REQUIRES = ["biopython>=1.81", "numpy>=1.24.0", "cython"]
REQUIRES = ["biopython>=1.82", "numpy>=1.24.0", "cython"]

setup(
name="clipkit",
Expand Down

0 comments on commit 96eb403

Please sign in to comment.