diff --git a/.circleci/config.yml b/.circleci/config.yml index 816a0232..6bc76779 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,6 +21,11 @@ # CircleCI Python images available at: https://hub.docker.com/r/circleci/python/ - image: circleci/python:3.9 +.py_3_10_container: &py_3_10_container + docker: + # CircleCI Python images available at: https://hub.docker.com/r/circleci/python/ + - image: circleci/python:3.10 + .pytest: &pytest run: name: Run unit tests @@ -115,6 +120,18 @@ jobs: <<: *common <<: *lint_steps + ############################################################################# + ### Python 3.10 Jobs + ############################################################################# + test.3.10: + <<: *py_3_10_container + <<: *common + <<: *test_steps + lint.3.10: + <<: *py_3_10_container + <<: *common + <<: *lint_steps + workflows: version: 2 @@ -137,3 +154,8 @@ workflows: jobs: - test.3.9 - lint.3.9 + + py-3.10-verify: + jobs: + - test.3.10 + - lint.3.10 diff --git a/HISTORY.rst b/HISTORY.rst index 2575dbca..358abd68 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,9 @@ Release History ^^^^^^^^^^^^^^^ +3.2.2 (2021-10-26) ++++++++++++++++++++ + +* Fix an issue where the show of a TVEpisode was not always set properly @twolaw (#157) 3.2.1 (2021-08-08) +++++++++++++++++++ diff --git a/trakt/__init__.py b/trakt/__init__.py index ffc1f368..cdf8d56b 100644 --- a/trakt/__init__.py +++ b/trakt/__init__.py @@ -5,6 +5,6 @@ except ImportError: pass -version_info = (3, 2, 1) +version_info = (3, 2, 2) __author__ = 'Jon Nappi' __version__ = '.'.join([str(i) for i in version_info])