Skip to content

Commit dab0a60

Browse files
authored
update keywords and add 3.11 to supported versions (#63)
1 parent 46e76d8 commit dab0a60

2 files changed

Lines changed: 19 additions & 5 deletions

File tree

HISTORY.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
History
33
=======
44

5+
1.2.2 (2023-04-14)
6+
------------------
7+
8+
**Features and Improvements**
9+
10+
* Update ``keywords`` for the package.
11+
* Add `Python 3.11` to the list of supported versions.
12+
513
1.2.1 (2023-04-14)
614
------------------
715

@@ -30,6 +38,8 @@ History
3038
1.1.0 (2022-01-27)
3139
------------------
3240

41+
**Features and Improvements**
42+
3343
* Refactor any model classes that would be returned in *list* API
3444
calls to subclass from ``JSONListWizard`` instead of ``JSONWizard``,
3545
simply so that ``Container`` objects will be returned by default.

setup.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
packages = [
1212
package_name,
1313
f'{package_name}.utils',
14-
f'{package_name}.utils.parse'
14+
f'{package_name}.utils.parse',
1515
]
1616

1717
requires = [
1818
'requests',
1919
'requests-toolbelt',
2020
'urllib3', # should already be installed via requests
2121
'dataclass-wizard>=0.21.0,<1.0',
22-
'cached-property~=1.5.2; python_version == "3.7"'
22+
'cached-property~=1.5.2; python_version == "3.7"',
2323
]
2424

2525
test_requirements = [
2626
'pytest>=6',
27-
'pytest-mock~=3.6.1'
27+
'pytest-mock~=3.6.1',
2828
]
2929

3030
readme = (here / 'README.rst').read_text()
@@ -43,8 +43,11 @@
4343
python_requires='>=3.7',
4444
install_requires=requires,
4545
license='MIT',
46-
keywords=['wistia', 'wistia api', 'wystia',
47-
'wistia data api', 'wistia upload api'],
46+
keywords=['wistia',
47+
'api',
48+
'wrapper',
49+
'data api',
50+
'upload api'],
4851
classifiers=[
4952
# Ref: https://pypi.org/classifiers/
5053
'Development Status :: 5 - Production/Stable',
@@ -58,6 +61,7 @@
5861
'Programming Language :: Python :: 3.8',
5962
'Programming Language :: Python :: 3.9',
6063
'Programming Language :: Python :: 3.10',
64+
'Programming Language :: Python :: 3.11',
6165
'Programming Language :: Python'
6266
],
6367
test_suite='tests',

0 commit comments

Comments
 (0)