Skip to content

Commit

Permalink
Merge pull request #22 from 6ug/drop34and35
Browse files Browse the repository at this point in the history
Drop python 3.4 and 3.5 support
  • Loading branch information
carver committed Oct 28, 2018
2 parents 970ea66 + 2ef6eb2 commit 25150ae
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 20 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
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,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
basepython =
py34: python3.4
py35: python3.5
py36: python3.6
py37: python3.7

Expand Down

0 comments on commit 25150ae

Please sign in to comment.