Skip to content

Commit 1993186

Browse files
authored
Don't disallow size in Aspell options (#211)
Fixes #210
1 parent 1da45d5 commit 1993186

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/src/markdown/about/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.12.1
4+
5+
- **NEW**: Don't disallow the `size` option in Aspell.
6+
37
## 2.12
48

59
- **NEW**: When `jobs` is set to `0`, use maximum available cores.

pyspelling/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def setup_command(self, encoding, options, personal_dict, file_name=None):
373373

374374
disallowed = {
375375
'?', 'a', 'c', 'v', 'ignore-repl', 'dont-ignore-repl', 'keyboard', 'prefix', 'repl', 'save-repl',
376-
'dont-save-repl', 'set-prefix', 'dont-set-prefix', 'size', 'sug-mode', 'sug-typo-analysis',
376+
'dont-save-repl', 'set-prefix', 'dont-set-prefix', 'sug-mode', 'sug-typo-analysis',
377377
'dont-sug-typo-analysis', 'sug-repl-table', 'dont-sug-repl-table', 'rem-sug-split-char',
378378
'add-sug-split-char', 'warn', 'affix-compress', 'dont-affix-compress', 'clean-affixes',
379379
'dont-clean-affixes', 'invisible-soundslike', 'dont-invisible-soundslike', 'partially-expand',

pyspelling/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,5 @@ def parse_version(ver):
188188
return Version(major, minor, micro, release, pre, post, dev)
189189

190190

191-
__version_info__ = Version(2, 12, 0, "final")
191+
__version_info__ = Version(2, 12, 1, "final")
192192
__version__ = __version_info__._get_canonical()

0 commit comments

Comments
 (0)