Skip to content

Commit

Permalink
Merge pull request #24 from python-qt-tools/attrs_version_requirement…
Browse files Browse the repository at this point in the history
…_for_frozen
  • Loading branch information
altendky authored Oct 12, 2021
2 parents a9f0da7 + 46a14bf commit ebb8ca7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Features

- If a wrapper has already been imported then :func:`qts.autoset_wrapper` uses it.
(`#23 <https://github.com/python-qt-tools/qts/pull/23>`__)
- Require :mod:`attrs` be at least v20.1.0 for use of :func:`attr.frozen`.
(`#24 <https://github.com/python-qt-tools/qts/pull/24>`__)


qts 0.2
Expand Down
4 changes: 4 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@
]

intersphinx_mapping = {
# TODO: use stable. using latest to get fixes for
# https://github.com/python-attrs/attrs/issues/849 sooner
"attr": ("https://www.attrs.org/en/latest/", None),
"attrs": ("https://www.attrs.org/en/latest/", None),
"python": ("https://docs.python.org/3", None),
"PyQt5": ("https://www.riverbankcomputing.com/static/Docs/PyQt5", None),
}
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ classifiers =
[options]
python_requires = >=3.6
install_requires =
attrs
# >= 20.1.0 for attr.frozen
attrs >= 20.1.0
typing-extensions ~= 3.10
include_package_data = True
zip_safe = False
Expand Down

0 comments on commit ebb8ca7

Please sign in to comment.