Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: "3.9"
python-version: "3.14"

- name: Install Tox
run: pip install tox;
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: "3.9"
python-version: "3.14"

- name: Install Tox
run: pip install tox;
Expand All @@ -116,7 +116,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: "3.9"
python-version: "3.14"

- name: Install Tox
run: pip install tox;
Expand All @@ -140,7 +140,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: "3.9"
python-version: "3.14"

- name: Install Tox
run: pip install tox;
Expand All @@ -163,7 +163,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: "3.9"
python-version: "3.14"

- name: Install Tox
run: pip install tox;
Expand All @@ -181,7 +181,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
python: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "pypy2", "pypy3"]
python: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy3"]

steps:

Expand Down
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
just when query string is present)
* Polish logo
* Get coverage up
* Switch off ctypes/socket for IP validation
* rebase method for path (prepends to path)
* sibling() should be maximal=False like child()
* make subencoding an exposed parameter
Expand Down
2 changes: 1 addition & 1 deletion docs/design.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ constructed, instances are not changed. Methods like
all return new URL objects. This enables URLs to be used in sets, as
well as dictionary keys.

.. _immutable: https://docs.python.org/2/glossary.html#term-immutable
.. _immutable: https://docs.python.org/3/glossary.html#term-immutable
.. _multidict: https://en.wikipedia.org/wiki/Multimap
.. _query string: https://en.wikipedia.org/wiki/Query_string
.. _GET parameters: http://php.net/manual/en/reserved.variables.get.php
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ hyperlink
URLs. Based on `RFC 3986`_ and `RFC 3987`_, the Hyperlink URL balances
simplicity and correctness for both :ref:`URIs and IRIs <uris_and_iris>`.

Hyperlink is tested against Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, and PyPy.
Hyperlink is tested against Python 3.10, 3.11, 3.12, 3.13, 3.14, and PyPy.

For an introduction to the hyperlink library, its background, and URLs
in general, see `this talk from PyConWeb 2017`_ (and `the accompanying
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ build-backend = "setuptools.build_meta"
[tool.black]

line-length = 80
target-version = ["py27"]
target-version = ["py310"]
19 changes: 7 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

from setuptools import find_packages, setup


__author__ = "Mahmoud Hashemi and Glyph Lefkowitz"
__version__ = "21.0.1dev"
__contact__ = "mahmoud@hatnote.com"
Expand All @@ -31,23 +30,19 @@
zip_safe=False,
license=__license__,
platforms="any",
install_requires=["idna>=2.5", 'typing ; python_version<"3.5"'],
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
install_requires=["idna>=3.0"],
python_requires=">=3.10",
classifiers=[
"Topic :: Utilities",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Development Status :: 5 - Production/Stable",
"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",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
],
Expand Down
53 changes: 0 additions & 53 deletions src/hyperlink/_socket.py

This file was deleted.

Loading