Skip to content

Commit

Permalink
Remove 3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Jul 10, 2022
1 parent c69cd87 commit eb46684
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ workflows:
- test_full/cp35-35m-linux:
filters:
<<: *__ignore_release__
- test_full/cp34-34m-linux:
filters:
<<: *__ignore_release__
#- test_full/cp34-34m-linux:
# filters:
# <<: *__ignore_release__
- test_full/cp27-27mu-linux:
filters:
<<: *__ignore_release__
Expand All @@ -72,9 +72,9 @@ workflows:
- test_minimal/cp35-35m-linux:
filters:
<<: *__ignore_release__
- test_minimal/cp34-34m-linux:
filters:
<<: *__ignore_release__
#- test_minimal/cp34-34m-linux:
# filters:
# <<: *__ignore_release__
- test_minimal/cp27-27mu-linux:
filters:
<<: *__ignore_release__
Expand Down Expand Up @@ -229,10 +229,10 @@ jobs:
docker:
- image: cimg/python:3.5

test_full/cp34-34m-linux:
<<: *test_full_template
docker:
- image: cimg/python:3.4
#test_full/cp34-34m-linux:
# <<: *test_full_template
# docker:
# - image: circleci/python:3.4

test_full/cp27-27mu-linux:
<<: *test_full_template
Expand Down Expand Up @@ -270,10 +270,10 @@ jobs:
docker:
- image: cimg/python:3.5

test_minimal/cp34-34m-linux:
<<: *test_minimal_template
docker:
- image: cimg/python:3.4
#test_minimal/cp34-34m-linux:
# <<: *test_minimal_template
# docker:
# - image: circleci/python:3.4

test_minimal/cp27-27mu-linux:
<<: *test_minimal_template
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def gen_packages_items():
setupkw['long_description'] = parse_description()
setupkw['long_description_content_type'] = 'text/x-rst'
setupkw['license'] = 'Apache 2'
setupkw['python_requires'] = '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*'
setupkw['python_requires'] = '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4'
setupkw['classifiers'] = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand All @@ -215,7 +215,6 @@ def gen_packages_items():
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down

0 comments on commit eb46684

Please sign in to comment.