Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ jobs:
strategy:
matrix:
py:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy-3.10"
os:
- "ubuntu-latest"
Expand Down
8 changes: 5 additions & 3 deletions deformdemo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

""" A Pyramid app that demonstrates various Deform widgets and
capabilities and which provides a functional test suite """
"""A Pyramid app that demonstrates various Deform widgets and
capabilities and which provides a functional test suite"""

import csv
import decimal
Expand Down Expand Up @@ -1664,7 +1664,9 @@ class Schema(colander.Schema):
colander.String(),
title=unicode("По оживлённым берегам", "utf-8"),
description=unicode(
"子曰:「學而時習之,不亦說乎?有朋自遠方來,不亦樂乎? " "人不知而不慍,不亦君子乎?」", "utf-8"
"子曰:「學而時習之,不亦說乎?有朋自遠方來,不亦樂乎? "
"人不知而不慍,不亦君子乎?」",
"utf-8",
),
default=unicode("☃", "utf-8"),
)
Expand Down
1 change: 1 addition & 0 deletions deformdemo/mini.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Self-contained Deform demo example."""

from __future__ import print_function

import colander
Expand Down
Loading