Skip to content

Commit

Permalink
Merge pull request #45 from zopefoundation/restore-py35
Browse files Browse the repository at this point in the history
Restore Python 3.5 support
  • Loading branch information
dataflake committed Sep 30, 2020
2 parents ba40130 + 4e698ab commit 644e292
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
Expand Down
4 changes: 1 addition & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
Changelog
=========

5.0 (unreleased)
4.7 (unreleased)
----------------

- Add support for Python 3.8 and 3.9.

- Drop support for Python 3.5.


4.6 (2019-04-24)
----------------
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ environment:
matrix:
- python: 27
- python: 27-x64
- python: 35
- python: 35-x64
- python: 36
- python: 36-x64
- python: 37
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
include_dirs=['include', 'src']),
]

version = '5.0.dev0'
version = '4.7.dev0'

setup(
name='Acquisition',
Expand All @@ -60,6 +60,7 @@
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -68,7 +69,7 @@
"Programming Language :: Python :: Implementation :: PyPy",
],
ext_modules=ext_modules,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*',
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
install_requires=[
'ExtensionClass >= 4.2.0',
'zope.interface',
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[tox]
envlist =
py27,py27-pure,
py35,py35-pure,
py36,py36-pure,
py37,py37-pure,
py38,py38-pure,
Expand Down

0 comments on commit 644e292

Please sign in to comment.