Skip to content

Commit

Permalink
Droping 3.4 and 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
6ug committed Oct 28, 2018
1 parent d86ca0e commit db14ebc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 22 deletions.
14 changes: 0 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,6 @@ jobs:
- image: circleci/python:3.7
environment:
TOXENV: lint
py34-core:
<<: *common
docker:
- image: circleci/python:3.4
environment:
TOXENV: py34-core
py35-core:
<<: *common
docker:
- image: circleci/python:3.5
environment:
TOXENV: py35-core
py36-core:
<<: *common
docker:
Expand All @@ -71,7 +59,5 @@ workflows:
test:
jobs:
- lint
- py34-core
- py35-core
- py36-core
- py37-core
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"pytest-xdist"
],
'lint': [
"flake8==3.4.1",
"mypy==0.641"
"flake8==3.4.1"
],
}

Expand Down Expand Up @@ -39,15 +38,13 @@
package_data={'py_ecc': ['py.typed']},
install_requires=[
],
python_requires='>=3.4, <4',
python_requires='>=3.6, <4',
extras_require=extras_require,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist=
py{34,35,36,37}-core
py{36,37}-core
lint

[flake8]
Expand All @@ -16,8 +16,6 @@ passenv=
deps =
extras = test, lint
basepython =
py34: python3.4
py35: python3.5
py36: python3.6
py37: python3.7

Expand Down

0 comments on commit db14ebc

Please sign in to comment.