Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: python
python:
- "2.7"
- "3.6"
install:
- ./configure
script:
- tmp/bin/pytest
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
Release notes
-------------
### Upcoming Version

*2020-10-08* -- Add support for both python 2 + 3
*2020-10-08* -- Add CI support for python 2 + 3

### Version 20.10

* Minimal fixes needed for proper release

### Version 20.09.30

*2020-09-25* -- Update to PEP 517/518 development practices
*2020-09-25* -- Add some minimal documentation

### Version 20.09

*2020-09-24* -- Initial release.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fi


if [[ "$PYTHON_EXE" == "" ]]; then
PYTHON_EXE=python3
PYTHON_EXE=python
fi


Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools >= 50", "wheel", "setuptools_scm[toml] >= 4"]
requires = ["setuptools >= 44", "wheel", "setuptools_scm[toml] >= 4"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand Down Expand Up @@ -43,4 +43,4 @@ addopts = [
"-rfExXw",
"--strict",
"--doctest-modules"
]
]
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ packages=find:
include_package_data = true
zip_safe = false
install_requires =
backports.os == 0.1.1
Comment thread
steven-esser marked this conversation as resolved.
Outdated
attrs >= 18.1, !=20.1.0
click >= 6.0.0
text_unidecode >= 1.0
Expand All @@ -40,5 +41,5 @@ where=src
[options.extras_require]
testing =
# upstream
pytest >= 6
pytest-xdist >= 2
pytest >= 4
pytest-xdist >= 1