Skip to content

Commit

Permalink
Add support for Python 3.7, 3.8 and 3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Oct 13, 2020
1 parent ca7271e commit 2d12e1a
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 222 deletions.
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
.tox
*.egg-info/
*.pyc
docs/_build/
.coverage
.tox/
bin/
coverage.xml
docs/_build/
lib/
nosetests.xml
.installed.cfg
pyvenv.cfg
develop-eggs/
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@ language: python
python:
- 2.7
- 3.6
- 3.7
- 3.8
- 3.9-dev
- pypy
- pypy3

matrix:
include:
- name: "lint"
python: 3.6
env: TOXENV="lint"
before_install:
- pip install -U tox
script:
- tox -e lint
after_success:

install:
- pip install -U pip setuptools
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Changes

- Port ``.browser`` sub-package to Python 3.

- Add support for Python 3.7, 3.8 and 3.9.

- Drop support for running the tests using ``python setup.py test``.

- Drop support for Python 3.4 and 3.5.
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include *.rst
include *.txt
include bootstrap.py
include buildout.cfg
include tox.ini
include .travis.yml
Expand Down
210 changes: 0 additions & 210 deletions bootstrap.py

This file was deleted.

8 changes: 0 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
[nosetests]
nocapture=1
cover-package=zope.dublincore
cover-erase=1
with-doctest=0
where=src
ignore-files=examples.py

[aliases]
dev = develop easy_install zope.dublincore[testing]
docs = easy_install zope.dublincore[docs]
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ def read(*path):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP',
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ envlist =
py27,
pypy,
py36,
py37,
py38,
py39,
pypy3,
docs

Expand Down

0 comments on commit 2d12e1a

Please sign in to comment.