Skip to content

Commit

Permalink
test on python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Jan 3, 2023
1 parent c88ea80 commit d6129a9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "pypy-3.7"
- "3.11"
- "pypy-3.8"
os:
- "ubuntu-latest"
- "windows-latest"
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Unreleased (2022-11-15)

- Rename "master" git branch to "main"

- Add Python 3.11 support.

2.10 (2022-03-27)
=================

Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
keywords = web wsgi pylons pyramid jinja2
license = BSD-derived (Repoze)
license_files =
LICENSE.txt
classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
Expand All @@ -15,6 +17,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Framework :: Pyramid
License :: Repoze Public License
url = https://github.com/Pylons/pyramid_jinja2
Expand All @@ -31,7 +34,7 @@ maintainer_email = pylons-discuss@googlegroups.com
[options]
package_dir=
=src
packages = find:
packages = find_namespace:
include_package_data = True
python_requires = >=3.7.0
install_requires =
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
lint,
py37,py38,py39,py310,pypy3,
py37,py38,py39,py310,py311,pypy3,
py39-pyramid{13,14,15,16,17,18,110,20},
py39-jinja2legacy,
coverage,
Expand Down Expand Up @@ -50,7 +50,7 @@ extras =
skip_install = True
commands =
isort --check-only --df src/pyramid_jinja2 tests demo
black --check --diff .
black --check --diff src/pyramid_jinja2 tests demo
flake8 src/pyramid_jinja2/ tests demo
check-manifest
# build sdist/wheel
Expand All @@ -70,7 +70,7 @@ deps =
skip_install = true
commands =
isort src/pyramid_jinja2 tests demo
black .
black src/pyramid_jinja2 tests demo
deps =
black
isort
Expand Down

0 comments on commit d6129a9

Please sign in to comment.