File tree 5 files changed +16
-15
lines changed
5 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
python :
3
3
- 2.7
4
- - 3.2
5
- - 3.3
6
4
- 3.4
7
5
- 3.5
8
6
- 3.6
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ Changelog
2
2
---------
3
3
4
4
5
+ 2.x (unreleased)
6
+ ~~~~~~~~~~~~~~~~
7
+
8
+ * Drop support for Python 3.2 and 3.3
9
+
10
+
5
11
2.1.1 (2019-01-02)
6
12
~~~~~~~~~~~~~~~~~~
7
13
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Key features:
34
34
- simplified syntax for search ``domain `` and ``fields ``
35
35
- full API accessible on the ``Client.env `` environment
36
36
- the module can be imported and used as a library: ``from odooly import Client ``
37
- - supports Python 3 and Python 2.7
37
+ - supports Python 3.4 and above, and Python 2.7
38
38
39
39
40
40
Original file line number Diff line number Diff line change @@ -12,12 +12,18 @@ keywords = odoo openerp xml-rpc xmlrpc jsonrpc
12
12
classifiers =
13
13
Development Status :: 5 - Production/Stable
14
14
Environment :: Console
15
+ Framework :: Odoo
15
16
Intended Audience :: Developers
16
17
License :: OSI Approved :: BSD License
17
18
Operating System :: OS Independent
18
- Programming Language :: Python
19
19
Programming Language :: Python :: 2
20
+ Programming Language :: Python :: 2.7
20
21
Programming Language :: Python :: 3
22
+ Programming Language :: Python :: 3.4
23
+ Programming Language :: Python :: 3.5
24
+ Programming Language :: Python :: 3.6
25
+ Programming Language :: Python :: 3.7
26
+ Programming Language :: Python :: 3.8
21
27
Topic :: Software Development :: Libraries :: Python Modules
22
28
23
29
@@ -35,5 +41,5 @@ console_scripts =
35
41
odooly = odooly:main
36
42
37
43
38
- [wheel ]
44
+ [bdist_wheel ]
39
45
universal = 1
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
- import sys
3
-
4
2
from setuptools import setup
5
3
6
- if (3 , 0 ) < sys .version_info < (3 , 4 ):
7
- # Package 'unittest2' does not discover tests on Python 3.2 and 3.3
8
- setup (
9
- tests_require = ['mock' , 'unittest2py3k' ],
10
- test_suite = 'unittest2.collector.collector' ,
11
- )
12
- else :
13
- setup ()
4
+ setup ()
You can’t perform that action at this time.
0 commit comments