Skip to content

Commit

Permalink
Support Python 3.13; Drop 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
chezou committed Oct 16, 2024
1 parent cb6131c commit e0502d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: |
3.8
3.9
3.10
3.11
3.12
3.13
- name: Install dependencies and test
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Text Processing :: General",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
]
keywords = [
"data frame",
"pdf",
"table",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"pandas >= 0.25.3",
"numpy",
"numpy > 1.24.4",
"distro",
]
dynamic = ["version"]
Expand Down

0 comments on commit e0502d9

Please sign in to comment.