Skip to content

Commit 0f96b6b

Browse files
committedOct 20, 2021
Update Travis-CI configuration
1 parent 0d37769 commit 0f96b6b

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed
 

‎.travis.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
dist: xenial
1+
dist: bionic
22
language: python
33

44
python:
55
- 2.7
6-
- 3.4
76
- 3.5
87
- 3.6
98
- 3.7
10-
- 3.7-dev
11-
- 3.8-dev
12-
- pypy2.7-6.0
13-
- pypy3.5-6.0
9+
- 3.8
10+
- 3.9
11+
- 3.9-dev
12+
- pypy2.7
13+
- pypy3.6
14+
- pypy3.7
1415
install:
1516
- pip list
1617
script:

‎CHANGES.rst

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ Changelog
22
---------
33

44

5+
2.x.x (unreleased)
6+
~~~~~~~~~~~~~~~~~~
7+
8+
* Drop support for Python 3.4
9+
10+
511
2.1.9 (2019-10-02)
612
~~~~~~~~~~~~~~~~~~
713

‎README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ Odooly carries three completing uses:
2727

2828
Key features:
2929

30-
- provides an API very close to the Odoo API 8.0, through JSON-RPC and XML-RPC
31-
- compatible with OpenERP 6.1 through Odoo 12.0
30+
- provides an API very close to the Odoo API, through JSON-RPC and XML-RPC
31+
- compatible with OpenERP 6.1 through Odoo 15.0
3232
- single executable ``odooly.py``, no external dependency
3333
- helpers for ``search``, for data model introspection, etc...
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.4 and above, and Python 2.7
37+
- supports Python 3.5 and above, and Python 2.7
3838

3939

4040

‎docs/developer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Source code
1111
* `Source code <https://github.com/tinyerp/odooly>`_ and
1212
`issue tracker <https://github.com/tinyerp/odooly/issues>`_ on GitHub.
1313
* `Continuous tests <http://travis-ci.org/tinyerp/odooly>`_ against Python
14-
2.7, 3.4 through 3.8 and PyPy, on `Travis-CI platform
14+
2.7, 3.5 through 3.9 and PyPy, on `Travis-CI platform
1515
<http://about.travis-ci.org/>`_.
1616

1717

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ classifiers =
1919
Programming Language :: Python :: 2
2020
Programming Language :: Python :: 2.7
2121
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.4
2322
Programming Language :: Python :: 3.5
2423
Programming Language :: Python :: 3.6
2524
Programming Language :: Python :: 3.7
2625
Programming Language :: Python :: 3.8
26+
Programming Language :: Python :: 3.9
2727
Topic :: Software Development :: Libraries :: Python Modules
2828

2929

0 commit comments

Comments
 (0)
Please sign in to comment.