Skip to content

Commit 54aba7b

Browse files
committed
Prior to this change,
This change
1 parent 4d8266e commit 54aba7b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/python-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19-
- name: Set up Python 3.8
19+
- name: Set up Python 3.9
2020
uses: actions/setup-python@v3
2121
with:
22-
python-version: 3.8
22+
python-version: 3.9
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v3
1919
with:
20-
python-version: 3.8
20+
python-version: 3.9
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Swiss army knife of **HLA** Nomenclature
88

99
**Note:**
1010

11+
- Python Version 3.8 is no longer supported with the latest `py-ard` versions due to latest Pandas library not supporting 3.8. Please use `py-ard==1.2.1` if using Python 3.8
12+
1113
- `ping` mode is default. When in `ping` mode, alleles that do not have a G group, their corresponding P group is used.
1214

1315
- Release `1.1.1` has extensive Serolgy related updates and affects Serology related data. Please rebuild the cache database if there's a missing Serology error.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@
6363
"Topic :: Scientific/Engineering :: Bio-Informatics",
6464
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
6565
"Natural Language :: English",
66-
"Programming Language :: Python :: 3.8",
6766
"Programming Language :: Python :: 3.9",
6867
"Programming Language :: Python :: 3.10",
68+
"Programming Language :: Python :: 3.11",
69+
"Programming Language :: Python :: 3.12",
6970
],
7071
test_suite="tests",
7172
tests_require=test_requirements,

0 commit comments

Comments
 (0)