We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 759a131 + babfd44 commit 1c78af5Copy full SHA for 1c78af5
2 files changed
.github/workflows/python-package.yml
@@ -17,17 +17,17 @@ jobs:
17
strategy:
18
fail-fast: false
19
matrix:
20
- python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
21
22
steps:
23
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
24
- name: Set up Python ${{ matrix.python-version }}
25
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
26
with:
27
python-version: ${{ matrix.python-version }}
28
- name: Install dependencies
29
run: |
30
- python -m pip install --upgrade pip
+ python -m pip install --upgrade pip setuptools
31
python -m pip install twine
32
python -m pip install sphinx
33
if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi
setup.py
@@ -21,14 +21,18 @@ def read(fname):
author = nameparser.__author__,
author_email = nameparser.__author_email__,
license = nameparser.__license__,
+ python_requires = '>=3.10',
keywords = ['names','parser'],
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.10',
+ 'Programming Language :: Python :: 3.11',
34
+ 'Programming Language :: Python :: 3.12',
35
+ 'Programming Language :: Python :: 3.13',
36
'Development Status :: 5 - Production/Stable',
37
'Natural Language :: English',
38
"Topic :: Software Development :: Libraries :: Python Modules",
0 commit comments