Skip to content

Commit 56fea44

Browse files
committed
Merge branch 'master' into async_ngd_client
2 parents 8f7c63f + a861b3b commit 56fea44

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.10", "3.11", "3.12", "3.13" ]
18+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
env:
2121
## Environment variable

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.3.3] - 2026/01/07
4+
- Updating support to python 3.14
5+
- Updates and fixes to documentation
6+
37
## [1.3.2] - 2025/07/30
48
- Deprecated support for Python 3.8 and 3.9
59
- Updating dependencies to latest versions

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ OS is the national mapping agency for Great Britain and produces a large variety
1212
and geospatial products. Much of OS's data is available via the [OS Data Hub](https://osdatahub.os.uk/), a platform
1313
that hosts both free and premium data products. `osdatahub` provides a user-friendly way to interact with these data
1414
products
15-
in Python. To see what data is available, you can use
16-
the [OS Data Hub Explorer](https://labs.os.uk/public/data-hub-explorer/).
15+
in Python. To see what data is available, you can explore our data using our [Product Viewers](https://docs.os.uk/more-than-maps/os-ngd-data-demonstrators/product-viewer) or alternatively within our [NGD Documentation](https://docs.os.uk/more-than-maps/os-ngd-data-demonstrators/os-ngd-data).
1716

1817
![The OS Logo](https://github.com/OrdnanceSurvey/osdatahub/blob/master/media/os-logo.png)
1918

@@ -345,4 +344,4 @@ pip install -e .[dev]
345344

346345
## Support
347346

348-
For any kind of issues or suggestions please see the [**documentation**](https://osdatahub.readthedocs.io/en/latest/), open a **[github issue](https://github.com/OrdnanceSurvey/osdatahub/issues)** or contact us via Email **[[email protected]](mailto:[email protected])**
347+
For any kind of issues or suggestions please see the [**documentation**](https://osdatahub.readthedocs.io/en/latest/) or open a **[github issue](https://github.com/OrdnanceSurvey/osdatahub/issues)**

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "OS Data Science Team"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "1.3.2"
26+
release = "1.3.3"
2727

2828
# -- General configuration ---------------------------------------------------
2929

recipes/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{% set name = "osdatahub" %}
3-
{% set version = "1.3.2" %}
3+
{% set version = "1.3.3" %}
44

55

66
package:

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = osdatahub
3-
version = 1.3.2
3+
version = 1.3.3
44
author = OS Data Science
55
author_email = [email protected]
66
classifiers =
@@ -11,6 +11,7 @@ classifiers =
1111
Programming Language :: Python :: 3.11
1212
Programming Language :: Python :: 3.12
1313
Programming Language :: Python :: 3.13
14+
Programming Language :: Python :: 3.14
1415
Topic :: Utilities
1516
Topic :: Scientific/Engineering :: GIS
1617
description = osdatahub is Ordnance Survey's (OS) Python API wrapper, designed to make data from the OS Data Hub APIs readily accessible to developers.

src/osdatahub/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ def set_proxies(proxies):
1212
def get_proxies():
1313
return json.loads(os.environ["_OSDATAHUB_PROXIES"])
1414

15-
16-
__version__ = "1.2.11"
15+
__version__ = "1.3.3"
1716

1817
from osdatahub.DownloadsAPI import DataPackageDownload, OpenDataDownload
1918
from osdatahub.extent import Extent

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# content of: tox.ini , put in same dir as setup.py
22
[tox]
3-
envlist = python3.10, python3.11, python3.12, python3.13
3+
envlist = python3.10, python3.11, python3.12, python3.13, python3.14
44

55
[testenv]
66
# install pytest in the virtualenv where commands will be executed

0 commit comments

Comments
 (0)