Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed errors that were throwing errors for docs #48

Merged
merged 8 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 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.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 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 Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ Cython = "==0.29.16"
Pygments = "==2.7.4"

[requires]
python_version = "3.7"
python_version = "3.9"
534 changes: 534 additions & 0 deletions Pipfile.lock

Large diffs are not rendered by default.

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"
2 changes: 1 addition & 1 deletion docs/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ Sphinx = "*"
sphinx_rtd_theme = "*"

[requires]
python_version = "3.7"
python_version = "3.9"
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
Loading