Skip to content

Commit 481f696

Browse files
committed
Tweak supported python versions
1 parent 725ffa9 commit 481f696

2 files changed

Lines changed: 1 addition & 27 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ workflows:
1010
jobs:
1111
- build
1212

13-
14-
- linux_py_27_16:
15-
requires:
16-
- build
17-
1813
- linux_py_27_17:
1914
requires:
2015
- build
@@ -33,7 +28,6 @@ workflows:
3328

3429
- deploy:
3530
requires:
36-
- linux_py_27_16
3731
- linux_py_27_17
3832
- linux_py_27_latest
3933
- linux_py_37
@@ -78,26 +72,6 @@ jobs:
7872
paths:
7973
- .
8074

81-
linux_py_27_16:
82-
description: Linux 2.7.16
83-
docker:
84-
- image: circleci/python:2.7.16
85-
86-
steps:
87-
- attach_workspace:
88-
at: /tmp/artifact
89-
name: Attach build artifact
90-
91-
- run:
92-
name: Install package
93-
command: |
94-
pip install '/tmp/artifact'
95-
96-
- run:
97-
name: Run integration test
98-
command: |
99-
python /tmp/artifact/tests/integration.py
100-
10175
linux_py_27_17:
10276
description: Linux 2.7.17
10377
docker:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def run(self):
2525
setuptools.setup(
2626
name='frameioclient',
2727
version=version,
28-
python_requires='>=2.6, !=3.6.*, <4',
28+
python_requires='>=2.7.17, !=3.6.*, <4',
2929
install_requires=[
3030
'requests',
3131
'urllib3',

0 commit comments

Comments
 (0)