File tree Expand file tree Collapse file tree 3 files changed +17
-18
lines changed Expand file tree Collapse file tree 3 files changed +17
-18
lines changed Original file line number Diff line number Diff line change 4
4
5
5
This client have been made in order to help you integrating our services within your apps in python.
6
6
7
- Tested on python 3.4 , 3.5 , 3.6 , 3.8 .
7
+ Tested on python 3.8 , 3.9 , 3.10 , 3.11 .
8
8
9
9
# API Documentation
10
10
Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ docker:
27
27
- deploy/install.sh
28
28
# Nothing changes comparing to above, except 'variant' and 'root_image'
29
29
- << : *base_image
30
- variant : ' 3.4 '
31
- root_image : python:3.4
30
+ variant : ' 3.9 '
31
+ root_image : python:3.9
32
32
- << : *base_image
33
- variant : ' 3.5 '
34
- root_image : python:3.5
33
+ variant : ' 3.10 '
34
+ root_image : python:3.10
35
35
- << : *base_image
36
- variant : ' 3.6 '
37
- root_image : python:3.6
36
+ variant : ' 3.11 '
37
+ root_image : python:3.11
38
38
39
39
services :
40
40
- service_name : client
@@ -45,10 +45,10 @@ services:
45
45
dockerfile : deploy/Dockerfile
46
46
target : dev
47
47
base_image_variant :
48
- - ' 3.4'
49
- - ' 3.5'
50
- - ' 3.6'
51
48
- ' 3.8'
49
+ - ' 3.9'
50
+ - ' 3.10'
51
+ - ' 3.11'
52
52
tests :
53
53
commands :
54
54
- LOG_LEVEL=DEBUG pytest --junit-xml=junit.xml --cov=. --cov-report=xml:coverage.xml --cov-report html:cover -vv /app/tests
@@ -61,10 +61,10 @@ services:
61
61
- service_name : build-egg
62
62
# unit tests must have passed on all supported platforms to build the universal egg
63
63
needed_services :
64
- - client:3.4
65
- - client:3.5
66
- - client:3.6
67
64
- client:3.8
65
+ - client:3.9
66
+ - client:3.10
67
+ - client:3.11
68
68
config :
69
69
docker_image :
70
70
build :
Original file line number Diff line number Diff line change 37
37
long_description_content_type = 'text/markdown' ,
38
38
data_files = [('' , ['requirements.txt' ])],
39
39
install_requires = requirements ,
40
- python_requires = ">=3.4 .*" ,
40
+ python_requires = ">=3.8 .*" ,
41
41
classifiers = [
42
42
'Operating System :: OS Independent' ,
43
43
'Programming Language :: Python' ,
44
44
'Programming Language :: Python :: 3' ,
45
- 'Programming Language :: Python :: 3.4' ,
46
- 'Programming Language :: Python :: 3.5' ,
47
- 'Programming Language :: Python :: 3.6' ,
48
- 'Programming Language :: Python :: 3.7' ,
49
45
'Programming Language :: Python :: 3.8' ,
46
+ 'Programming Language :: Python :: 3.9' ,
47
+ 'Programming Language :: Python :: 3.10' ,
48
+ 'Programming Language :: Python :: 3.11' ,
50
49
]
51
50
)
You can’t perform that action at this time.
0 commit comments