Skip to content

Commit

Permalink
Merge pull request #2 from JLSteenwyk/new_python_versions
Browse files Browse the repository at this point in the history
New python versions
  • Loading branch information
JLSteenwyk authored Oct 23, 2023
2 parents b35a9c6 + 045f6e4 commit 2049b59
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 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.6, 3.7, 3.8]
python-version: ['3.9', '3.10']
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -26,13 +26,13 @@ jobs:
test-full:
runs-on: macos-latest
env:
PYTHON: '3.9'
PYTHON: '3.10'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r ./tests/requirements.txt
Expand Down Expand Up @@ -87,4 +87,4 @@ jobs:
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/_build/html
FOLDER: docs/_build/html
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ run.alignment_summary:
## Install, develop, and testing make commands
install:
# install so biokit command is available in terminal
python setup.py install
python3 setup.py install

develop:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#development-mode
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
biopython==1.76
numpy==1.18.2
biopython==1.81
numpy==1.24.0
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]

REQUIRES = ["biopython==1.76", "numpy==1.18.2", "cython"]
REQUIRES = ["biopython==1.76", "numpy==1.24.0", "cython"]

setup(
name="jlsteenwyk-biokit",
Expand Down
10 changes: 6 additions & 4 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
mock==2.0.0
pytest-cov==2.5.1
pytest-mock==1.10.1
pytest==4.5.0
mock==5.1.0
pytest-cov==4.1.0
pytest-mock==3.0.0
pytest==7.4.2
biopython==1.76
numpy==1.24.0

0 comments on commit 2049b59

Please sign in to comment.