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
1diff --git a/.bzrignore b/.gitignore
2similarity index 100%
3rename from .bzrignore
4rename to .gitignore
5diff --git a/NEWS.rst b/NEWS.rst
6index 35ef603..4245130 100644
7--- a/NEWS.rst
8+++ b/NEWS.rst
9@@ -2,6 +2,11 @@
10 NEWS for lazr.restful
11 =====================
12
13+1.1.1
14+=====
15+
16+- Add support for Python 3.9 and 3.10.
17+
18 1.1.0 (2021-10-07)
19 ==================
20
21diff --git a/setup.py b/setup.py
22index aae9609..29508ad 100755
23--- a/setup.py
24+++ b/setup.py
25@@ -93,6 +93,8 @@ setup(
26 "Programming Language :: Python :: 3.6",
27 "Programming Language :: Python :: 3.7",
28 "Programming Language :: Python :: 3.8",
29+ "Programming Language :: Python :: 3.9",
30+ "Programming Language :: Python :: 3.10",
31 ],
32 extras_require=dict(
33 docs=['Sphinx'],
34diff --git a/src/lazr/restful/docs/webservice-declarations.rst b/src/lazr/restful/docs/webservice-declarations.rst
35index d0cb7e9..f9d932a 100644
36--- a/src/lazr/restful/docs/webservice-declarations.rst
37+++ b/src/lazr/restful/docs/webservice-declarations.rst
38@@ -228,7 +228,7 @@ interface:
39 ... pass
40 Traceback (most recent call last):
41 ...
42- TypeError: __init__() ...
43+ TypeError: ...
44
45 >>> @exported_as_webservice_collection("not an interface")
46 ... class InvalidEntrySchema(Interface):
47diff --git a/tox.ini b/tox.ini
48index 3484be5..aac9737 100644
49--- a/tox.ini
50+++ b/tox.ini
51@@ -1,6 +1,6 @@
52 [tox]
53 envlist =
54- py27,py35,py36,py37,py38,docs
55+ py27,py35,py36,py37,py38,py39,py310,docs
56
57 [testenv]
58 deps =
59@@ -10,7 +10,7 @@ commands =
60 zope-testrunner --test-path src --tests-pattern ^tests {posargs}
61
62 [testenv:docs]
63-basepython = python3.8
64+basepython = python3
65 deps =
66 .[docs]
67 commands =

Subscribers

People subscribed via source and target branches