Skip to content

Commit

Permalink
update python version in docs, setup.py; added me to contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
delijati committed Nov 14, 2023
1 parent 2f56ff9 commit 2a4d7e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,4 @@ Contributors
- Steve Piercy 2020/05/11
- John Haiducek 2020/06/20
- Maksym Shalenyi 2020/06/20
- Josip Delić 2023/11/14
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Deform Demo

Demonstration application for the `Deform <https://docs.pylonsproject.org/projects/deform/en/latest>`_ Python HTML form library.

This application is tested on Python versions 3.6, 3.7, 3.8, and 3.9, and PyPy3.
This application is tested on Python versions >= 3.8 <= 3.12, and PyPy3.


Online version
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def readfile(name):
requires = [
"Babel",
"deform >= 2.0.15.dev0", # .dev0 allows pre-releases.
"pyramid >= 1.5a1", # route_name argument to resource_url
"pyramid >= 2.0a0", # route_name argument to resource_url
"pyramid_chameleon",
"pygments",
"waitress",
Expand Down Expand Up @@ -59,10 +59,11 @@ def readfile(name):
"License :: Repoze Public License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
Expand Down

0 comments on commit 2a4d7e9

Please sign in to comment.