Skip to content

Commit

Permalink
Modernize Python versions.
Browse files Browse the repository at this point in the history
modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
  • Loading branch information
jugmac00 committed Nov 19, 2019
1 parent 8157a44 commit a4e6511
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.5
- 3.6
- 3.7
- 3.8
install:
- pip install --upgrade setuptools
- pip install --upgrade zc.buildout
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
=======

1.1.3 (unreleased)
2.0 (unreleased)
------------------

- Nothing changed yet.
- Drop support for Python 2.6, 3.2, 3.3

- Add support for Python 3.5, 3.6, 3.7, 3.8.


1.1.2 (2014-02-21)
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name = "zc.recipe.filestorage"
setup(
name=name,
version='1.1.3.dev0',
version='2.0.dev0',
author="Jim Fulton",
author_email="jim@zope.com",
description="ZC Buildout recipe for defining a file-storage",
Expand All @@ -27,11 +27,12 @@
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(),
namespace_packages=["zc", "zc.recipe"],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33
py27,py35,py36,py37,py38

[testenv]
deps =
Expand Down

0 comments on commit a4e6511

Please sign in to comment.