Skip to content

Commit 7c658c3

Browse files
authored
chore: remove Python 3.8 support (#2)
1 parent 319573e commit 7c658c3

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/pypi-publish.yml

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

1515
steps:
1616
- uses: actions/checkout@v4
17-
- name: Set up Python 3.9
17+
- name: Set up Python 3.11
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.9
20+
python-version: 3.11
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip

.github/workflows/pypi-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
18+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
1919

2020
name: Python ${{ matrix.python-version }}
2121
steps:

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3-
## Version 0.1
3+
## Version 0.2.0
4+
5+
- chore: Remove Python 3.8 (EOL).
6+
- precommit: Replace docformatter with ruff's formatter.
7+
8+
## Version 0.1.0
49

510
- Added parser to extract nodes and their lineages from OWL files.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ package_dir =
4141
=src
4242

4343
# Require a min/specific Python version (comma-separated conditions)
44-
python_requires = >=3.8
44+
python_requires = >=3.9
4545

4646
# Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0.
4747
# Version specifiers like >=2.2,<3.0 avoid problems due to API changes in

0 commit comments

Comments
 (0)