Skip to content

Commit

Permalink
Package maintenance
Browse files Browse the repository at this point in the history
- Note Python 3 compatibility in package classifiers
- Add Python 3 environments to travis configuration
- Update Manifest file
- Note Zope 4 / Python 3 compatibility in the Changelog
  • Loading branch information
dataflake committed May 15, 2017
1 parent a067aec commit 7ab5ff8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ language: python
sudo: false
python:
- 2.7
- 3.4
- 3.5
- 3.6
install:
- pip install -U setuptools==33.1.1
- python bootstrap.py
- bin/buildout
script:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Changelog
4.0a4 (unreleased)
------------------

- Python 3 compatibility

- Target use with Zope 4: no longer support 2.13.x.

- `five.globalrequest` got merged into Zope2 itself.

- Use aq_inner before aq_parent at some places to safely get the parent
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
include *.txt
include *.rst
include *.cfg
exclude .*.cfg

recursive-include src *

global-exclude *.pyc
global-exclude *.pyo

include *.py
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,15 @@
"License :: OSI Approved :: Zope Public License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2 :: Only",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
],
install_requires=[
'setuptools',
Expand Down

0 comments on commit 7ab5ff8

Please sign in to comment.