Merge ~jugmac00/lazr.restful:more-python into lazr.restful:main

Proposed by Jürgen Gmach
Status: Merged
Merge reported by: Jürgen Gmach
Merged at revision: 729cf898bcce61e2c9c0e58cb13d1cb862b5ecba
Proposed branch: ~jugmac00/lazr.restful:more-python
Merge into: lazr.restful:main
Diff against target: 67 lines (+10/-3)
4 files modified
NEWS.rst (+5/-0)
setup.py (+2/-0)
src/lazr/restful/docs/webservice-declarations.rst (+1/-1)
tox.ini (+2/-2)
Reviewer Review Type Date Requested Status
Colin Watson (community) Approve
Review via email: mp+411317@code.launchpad.net

Commit message

Add support for Python 3.9 and 3.10

To post a comment you must log in.
Revision history for this message
Colin Watson (cjwatson) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
diff --git a/.bzrignore b/.gitignore
0similarity index 100%0similarity index 100%
1rename from .bzrignore1rename from .bzrignore
2rename to .gitignore2rename to .gitignore
diff --git a/NEWS.rst b/NEWS.rst
index 35ef603..4245130 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -2,6 +2,11 @@
2NEWS for lazr.restful2NEWS for lazr.restful
3=====================3=====================
44
51.1.1
6=====
7
8- Add support for Python 3.9 and 3.10.
9
51.1.0 (2021-10-07)101.1.0 (2021-10-07)
6==================11==================
712
diff --git a/setup.py b/setup.py
index aae9609..29508ad 100755
--- a/setup.py
+++ b/setup.py
@@ -93,6 +93,8 @@ setup(
93 "Programming Language :: Python :: 3.6",93 "Programming Language :: Python :: 3.6",
94 "Programming Language :: Python :: 3.7",94 "Programming Language :: Python :: 3.7",
95 "Programming Language :: Python :: 3.8",95 "Programming Language :: Python :: 3.8",
96 "Programming Language :: Python :: 3.9",
97 "Programming Language :: Python :: 3.10",
96 ],98 ],
97 extras_require=dict(99 extras_require=dict(
98 docs=['Sphinx'],100 docs=['Sphinx'],
diff --git a/src/lazr/restful/docs/webservice-declarations.rst b/src/lazr/restful/docs/webservice-declarations.rst
index d0cb7e9..f9d932a 100644
--- a/src/lazr/restful/docs/webservice-declarations.rst
+++ b/src/lazr/restful/docs/webservice-declarations.rst
@@ -228,7 +228,7 @@ interface:
228 ... pass228 ... pass
229 Traceback (most recent call last):229 Traceback (most recent call last):
230 ...230 ...
231 TypeError: __init__() ...231 TypeError: ...
232232
233 >>> @exported_as_webservice_collection("not an interface")233 >>> @exported_as_webservice_collection("not an interface")
234 ... class InvalidEntrySchema(Interface):234 ... class InvalidEntrySchema(Interface):
diff --git a/tox.ini b/tox.ini
index 3484be5..aac9737 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
1[tox]1[tox]
2envlist =2envlist =
3 py27,py35,py36,py37,py38,docs3 py27,py35,py36,py37,py38,py39,py310,docs
44
5[testenv]5[testenv]
6deps =6deps =
@@ -10,7 +10,7 @@ commands =
10 zope-testrunner --test-path src --tests-pattern ^tests {posargs}10 zope-testrunner --test-path src --tests-pattern ^tests {posargs}
1111
12[testenv:docs]12[testenv:docs]
13basepython = python3.813basepython = python3
14deps =14deps =
15 .[docs]15 .[docs]
16commands =16commands =

Subscribers

People subscribed via source and target branches