Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Python 3.4, add 3.7 #17

Merged
merged 3 commits into from
Apr 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
language: python
sudo: false
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
# Force a newer PyPy on the old 'precise' CI image.
# After September 2017 this should be the default and the version
# pin can be removed.
- pypy-5.6.0
- pypy3.5-5.8.0
- 3.7
- pypy2.7-6.0.0
- pypy3.5-6.0.0
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
Changes
=========

4.3.2 (unreleased)
5.0.0 (unreleased)
==================

- Nothing changed yet.
- Add support for Python 3.7.

- Drop support for Python 3.4.


4.3.1 (2017-09-01)
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
import os
from setuptools import setup, find_packages


def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as file:
return file.read()


VOCABULARY_REQUIRES = [
'zope.schema',
]
Expand All @@ -35,7 +37,7 @@ def read(*rnames):
]

setup(name='zope.password',
version='4.3.2.dev0',
version='5.0.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Password encoding and checking utilities',
Expand All @@ -55,9 +57,9 @@ def read(*rnames):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down Expand Up @@ -91,5 +93,5 @@ def read(*rnames):
[console_scripts]
zpasswd = zope.password.zpasswd:main
""",
python_requires='>=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
python_requires='>=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,pypy,pypy3,docs,coverage
py27,py35,py36,py37,pypy,pypy3,docs,coverage

[testenv]
commands =
Expand Down