Skip to content

Commit

Permalink
Drop python 3.4 - it's dead.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Oct 12, 2019
1 parent af85662 commit be0cb6a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions {{cookiecutter.repo_name}}/ci/templates/.appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ environment:
{{ "{% if env.endswith('-cover') %}" }}
{%- endif -%}
{%- endif -%}
{%- if cookiecutter.codecov == 'yes' %},codecov{% endif %}
{%- if cookiecutter.codecov == 'yes' %},codecov{% endif -%}
{%- if cookiecutter.coveralls == 'yes' %},coveralls{% endif -%}
{%- if cookiecutter.test_matrix_separate_coverage == "yes" -%}
{{ "{% endif %}" }}
{%- endif %}
{%- endif -%}
{{ '' }}
TOXPYTHON: C:\Python{{ "{{ env[2:4] }}" }}{{ '' if arch == '32' else '-x64' }}\python.exe
PYTHON_HOME: C:\Python{{ "{{ env[2:4] }}" }}{{ '' if arch == '32' else '-x64' }}
Expand All @@ -46,8 +46,8 @@ environment:
{{ " WHEEL_PATH: .tox/dist" }}
{{ "{% endif %}" }}
{%- if arch == '64' %}
{{ "{% if env.startswith(('py2', 'py34')) %}" }}
{{ " WINDOWS_SDK_VERSION: v7.{{ '1' if env.startswith('py3') else '0' }}" }}
{{ "{% if env.startswith('py2') %}" }}
{{ " WINDOWS_SDK_VERSION: v7.0" }}
{{ "{% endif %}" }}
{%- endif %}
{%- endfor %}
Expand Down
1 change: 0 additions & 1 deletion {{cookiecutter.repo_name}}/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ skip = migrations

python_versions =
py27
py34
py35
py36
py37
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.repo_name}}/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ envlist =
{%- if cookiecutter.sphinx_docs == "yes" %}
docs,
{%- endif %}
{py27,py34,py35,py36,py37,pypy,pypy3}{% if cookiecutter.test_matrix_separate_coverage == 'yes' %}-{cover,nocov}{% endif %},
{py27,py35,py36,py37,pypy,pypy3}{% if cookiecutter.test_matrix_separate_coverage == 'yes' %}-{cover,nocov}{% endif %},
report
ignore_basepython_conflict = true

Expand All @@ -41,10 +41,10 @@ basepython =
pypy: {env:TOXPYTHON:pypy}
pypy3: {env:TOXPYTHON:pypy3}
py27: {env:TOXPYTHON:python2.7}
py34: {env:TOXPYTHON:python3.4}
py35: {env:TOXPYTHON:python3.5}
{% if cookiecutter.sphinx_docs == "yes" %}{py36,docs,spell}{% else %}py36{% endif %}: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7}
py38: {env:TOXPYTHON:python3.8}
{bootstrap,clean,check,report{%- if cookiecutter.codecov == 'yes' %},codecov{% endif %}{% if cookiecutter.coveralls == 'yes' %},coveralls{% if cookiecutter.c_extension_support != "no" %},extension-coveralls{% endif %}{% endif %}}: {env:TOXPYTHON:python3}
setenv =
PYTHONPATH={toxinidir}/tests
Expand Down

0 comments on commit be0cb6a

Please sign in to comment.