Skip to content

Commit

Permalink
Update config.
Browse files Browse the repository at this point in the history
  • Loading branch information
icemac committed Jan 28, 2025
1 parent 3e9aa03 commit 91575ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"License :: OSI Approved :: Zope Public License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
Expand All @@ -34,7 +34,7 @@
package_dir={'': 'src'},
namespace_packages=['five'],
include_package_data=True,
python_requires='>=3.8',
python_requires='>=3.9',
install_requires=[
'setuptools',
'transaction',
Expand Down
4 changes: 2 additions & 2 deletions src/five/formlib/tests/test_formlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def test_get_widgets_for_schema_fields():


def encodeMultipartFormdata(
fields: typing.List[typing.Tuple[str, str]],
files: typing.Optional[list] = None) -> typing.Tuple[str, str]:
fields: list[tuple[str, str]],
files: typing.Optional[list] = None) -> tuple[str, str]:
"""Encode fields and files to be used in a multipart/form-data request.
Returns a tuple of content-type and content.
Expand Down

0 comments on commit 91575ba

Please sign in to comment.