Skip to content

Commit 4bd72df

Browse files
committed
Use Python 3.8
1 parent 2ab27ab commit 4bd72df

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"models.",
1212
url="https://github.com/audienceproject/artifacts-metadata-py",
1313
packages=setuptools.find_packages(),
14-
python_requires=">=3.6",
14+
python_requires=">=3.8",
1515
install_requires=["boto3>=1.0.0"]
1616
)

wercker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ box:
22
id: audienceproject/python
33
username: $DOCKERHUB_ACCOUNT
44
password: $DOCKERHUB_PASSWORD
5-
tag: 3.6
5+
tag: 3.8
66
no-response-timeout: 25
77
command-timeout: 25
88

@@ -11,8 +11,8 @@ build:
1111
- script:
1212
name: Setup virtualenv
1313
code: |
14-
virtualenv env --python=python3.6 --clear
15-
env/bin/pip install pylint==2.4.4
14+
virtualenv env --python=python3.8 --clear
15+
env/bin/pip install pylint==2.4.4 boto3==1.0.0
1616
- script:
1717
name: PyLint
1818
code: env/bin/pylint artifacts_metadata
@@ -22,7 +22,7 @@ deploy:
2222
- script:
2323
name: Setup virtualenv
2424
code: |
25-
virtualenv env --python=python3.6 --clear
25+
virtualenv env --python=python3.8 --clear
2626
env/bin/pip install twine==3.1.1
2727
- script:
2828
name: Build library

0 commit comments

Comments
 (0)