Skip to content

Commit ff2d734

Browse files
committed
v1.2.0 - bug fixes, feature updates, unit tests, ci/cd updates
1 parent a5f44d6 commit ff2d734

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest # platform: [ubuntu-latest, macos-latest, windows-latest]
2525
strategy:
2626
matrix:
27-
python-version: ["3.8", "3.9", "3.10"] #testing on multiple python versions
27+
python-version: ["3.9", "3.10"] #testing on multiple python versions
2828
steps:
2929
- uses: actions/checkout@v3
3030
- name: Set up Python ${{ matrix.python-version }}
@@ -36,8 +36,8 @@ jobs:
3636
- name: Install dependencies
3737
run: |
3838
python -m pip install pip
39-
pip install cython
4039
python3 -m pip install setuptools wheel twine
40+
pip install cython
4141
pip install flake8 pytest
4242
pip install pytest
4343
pip install pytest-cov

.github/workflows/deploy_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest # platform: [ubuntu-latest, macos-latest, windows-latest]
1818
strategy:
1919
matrix:
20-
python-version: [3.8] #deploying using one Python version on 1 runner
20+
python-version: [3.9] #deploying using one Python version on 1 runner
2121
steps:
2222
- uses: actions/checkout@v3
2323
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/deploy_test_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest # platform: [ubuntu-latest, macos-latest, windows-latest]
1919
strategy:
2020
matrix:
21-
python-version: [3.8] #deploying using one Python version on 1 runner
21+
python-version: [3.9] #deploying using one Python version on 1 runner
2222
steps:
2323
- uses: actions/checkout@v3
2424
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
install_requires=[
6060
"aaindex",
6161
"numpy",
62-
"pandas==1.1.0",
62+
"pandas",
6363
"varname",
6464
],
6565
test_suite=__test_suite__,

0 commit comments

Comments
 (0)