Skip to content

Commit 243c007

Browse files
committed
Merge branch 'master' into travis-lint, fixing some conflicts, and fixing mypy errors around unspecified generics.
2 parents c0fdc92 + d5c2c28 commit 243c007

9 files changed

Lines changed: 488 additions & 309 deletions

File tree

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
sudo: false
2-
cache:
3-
directories:
4-
- $HOME/.cache/pip
1+
cache: pip
52

63
language: python
74

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Hyperlink provides a pure-Python implementation of immutable
2525
URLs. Based on [RFC 3986][rfc3986] and [3987][rfc3987], the Hyperlink URL
2626
makes working with both URIs and IRIs easy.
2727

28-
Hyperlink is tested against Python 2.7, 3.4, 3.5, 3.6, and PyPy.
28+
Hyperlink is tested against Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, and PyPy.
2929

3030
Full documentation is available on [Read the Docs][docs].
3131

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hyperlink
1010
URLs. Based on `RFC 3986`_ and `RFC 3987`_, the Hyperlink URL balances
1111
simplicity and correctness for both :ref:`URIs and IRIs <uris_and_iris>`.
1212

13-
Hyperlink is tested against Python 2.7, 3.4, 3.5, 3.6, and PyPy.
13+
Hyperlink is tested against Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, and PyPy.
1414

1515
For an introduction to the hyperlink library, its background, and URLs
1616
in general, see `this talk from PyConWeb 2017`_ (and `the accompanying

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,21 @@
3434
'idna>=2.5',
3535
'typing ; python_version<"3.5"',
3636
],
37+
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
3738
classifiers=[
3839
'Topic :: Utilities',
3940
'Intended Audience :: Developers',
4041
'Topic :: Software Development :: Libraries',
4142
'Development Status :: 5 - Production/Stable',
43+
'Programming Language :: Python :: 2',
4244
'Programming Language :: Python :: 2.6',
4345
'Programming Language :: Python :: 2.7',
46+
'Programming Language :: Python :: 3',
4447
'Programming Language :: Python :: 3.4',
4548
'Programming Language :: Python :: 3.5',
4649
'Programming Language :: Python :: 3.6',
50+
'Programming Language :: Python :: 3.7',
51+
'Programming Language :: Python :: 3.8',
4752
'Programming Language :: Python :: Implementation :: PyPy',
4853
'License :: OSI Approved :: MIT License', ]
4954
)

0 commit comments

Comments
 (0)