Skip to content

Commit 9c02c51

Browse files
committed
Testing on maintained versions of python
1 parent d2c19e1 commit 9c02c51

File tree

3 files changed

+17
-18
lines changed

3 files changed

+17
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This client have been made in order to help you integrating our services within your apps in python.
66

7-
Tested on python 3.4, 3.5, 3.6, 3.8.
7+
Tested on python 3.8, 3.9, 3.10, 3.11.
88

99
# API Documentation
1010

dmake.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ docker:
2727
- deploy/install.sh
2828
# Nothing changes comparing to above, except 'variant' and 'root_image'
2929
- <<: *base_image
30-
variant: '3.4'
31-
root_image: python:3.4
30+
variant: '3.9'
31+
root_image: python:3.9
3232
- <<: *base_image
33-
variant: '3.5'
34-
root_image: python:3.5
33+
variant: '3.10'
34+
root_image: python:3.10
3535
- <<: *base_image
36-
variant: '3.6'
37-
root_image: python:3.6
36+
variant: '3.11'
37+
root_image: python:3.11
3838

3939
services:
4040
- service_name: client
@@ -45,10 +45,10 @@ services:
4545
dockerfile: deploy/Dockerfile
4646
target: dev
4747
base_image_variant:
48-
- '3.4'
49-
- '3.5'
50-
- '3.6'
5148
- '3.8'
49+
- '3.9'
50+
- '3.10'
51+
- '3.11'
5252
tests:
5353
commands:
5454
- 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:
6161
- service_name: build-egg
6262
# unit tests must have passed on all supported platforms to build the universal egg
6363
needed_services:
64-
- client:3.4
65-
- client:3.5
66-
- client:3.6
6764
- client:3.8
65+
- client:3.9
66+
- client:3.10
67+
- client:3.11
6868
config:
6969
docker_image:
7070
build:

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,14 @@
3737
long_description_content_type='text/markdown',
3838
data_files=[('', ['requirements.txt'])],
3939
install_requires=requirements,
40-
python_requires=">=3.4.*",
40+
python_requires=">=3.8.*",
4141
classifiers=[
4242
'Operating System :: OS Independent',
4343
'Programming Language :: Python',
4444
'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',
4945
'Programming Language :: Python :: 3.8',
46+
'Programming Language :: Python :: 3.9',
47+
'Programming Language :: Python :: 3.10',
48+
'Programming Language :: Python :: 3.11',
5049
]
5150
)

0 commit comments

Comments
 (0)