Skip to content

Commit

Permalink
feat: drop support for python 3.6 and 3.7 (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Jun 8, 2024
1 parent c886ee6 commit 55a928c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=base_packages,
extras_require={
Expand All @@ -70,5 +72,5 @@
"use": use_packages,
"gensim": gensim_packages,
},
python_requires=">=3.6",
python_requires=">=3.8",
)

0 comments on commit 55a928c

Please sign in to comment.