Skip to content

Commit b43c3bb

Browse files
committed
Drop support for Python 3.2 and 3.3
1 parent 850ad0a commit b43c3bb

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
language: python
22
python:
33
- 2.7
4-
- 3.2
5-
- 3.3
64
- 3.4
75
- 3.5
86
- 3.6

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ Changelog
22
---------
33

44

5+
2.x (unreleased)
6+
~~~~~~~~~~~~~~~~
7+
8+
* Drop support for Python 3.2 and 3.3
9+
10+
511
2.1.1 (2019-01-02)
612
~~~~~~~~~~~~~~~~~~
713

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Key features:
3434
- simplified syntax for search ``domain`` and ``fields``
3535
- full API accessible on the ``Client.env`` environment
3636
- 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
3838

3939

4040

setup.cfg

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@ keywords = odoo openerp xml-rpc xmlrpc jsonrpc
1212
classifiers =
1313
Development Status :: 5 - Production/Stable
1414
Environment :: Console
15+
Framework :: Odoo
1516
Intended Audience :: Developers
1617
License :: OSI Approved :: BSD License
1718
Operating System :: OS Independent
18-
Programming Language :: Python
1919
Programming Language :: Python :: 2
20+
Programming Language :: Python :: 2.7
2021
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
2127
Topic :: Software Development :: Libraries :: Python Modules
2228

2329

@@ -35,5 +41,5 @@ console_scripts =
3541
odooly = odooly:main
3642

3743

38-
[wheel]
44+
[bdist_wheel]
3945
universal = 1

setup.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
#!/usr/bin/env python
2-
import sys
3-
42
from setuptools import setup
53

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()

0 commit comments

Comments
 (0)