Skip to content

Commit

Permalink
Remove Python 2.6 tests and mentions, add change log, rename license …
Browse files Browse the repository at this point in the history
…file.
  • Loading branch information
somexpert committed Aug 28, 2018
1 parent 10fe949 commit 203a660
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ dist/
.tox/
.coverage
.pytest_cache
.cache
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Change Log
==========

1.1.0
-----

Added support for Python 3.4-3.7. Dropped tests against Python 2.6.

1.0.0
-----

Initial release. Supported on Python 2.6 and 2.7.
File renamed without changes.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include LICENSE
include LICENSE.txt
include CHANGELOG.md
include *.md
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ directory paths (http://tools.ietf.org/html/draft-kunze-pairtree-01).

## License

See LICENSE.
See LICENSE.txt.

## Acknowledgements

Expand All @@ -18,6 +18,7 @@ by a number of developers over the years including
- [Mark Phillips](https://github.com/vphill)
- [Lauren Ko](https://github.com/ldko)
- [Joey Liechty](https://github.com/yeahdef)
- [Gio Gottardi](https://github.com/somexpert)

If you have questions about the project feel free to contact Mark Phillips
at [email protected].
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
'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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
license='LICENSE',
license='LICENSE.txt',
description=('Python implementation of Pairtree for storing '
'objects in a filesystem hierarchy that maps object'
' identifiers to two character directory paths'),
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py34,py35,py36,flake8
envlist = py27,py34,py35,py36,py37,flake8

[testenv]
deps=pytest
Expand Down

0 comments on commit 203a660

Please sign in to comment.