Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13" ]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

env:
## Environment variable
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ OS is the national mapping agency for Great Britain and produces a large variety
and geospatial products. Much of OS's data is available via the [OS Data Hub](https://osdatahub.os.uk/), a platform
that hosts both free and premium data products. `osdatahub` provides a user-friendly way to interact with these data
products
in Python. To see what data is available, you can use
the [OS Data Hub Explorer](https://labs.os.uk/public/data-hub-explorer/).
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).

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

Expand Down Expand Up @@ -345,4 +344,4 @@ pip install -e .[dev]

## Support

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])**
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)**
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "OS Data Science Team"

# The full version, including alpha/beta/rc tags
release = "1.3.2"
release = "1.3.3"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion recipes/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{% set name = "osdatahub" %}
{% set version = "1.3.2" %}
{% set version = "1.3.3" %}


package:
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = osdatahub
version = 1.3.2
version = 1.3.3
author = OS Data Science
author_email = [email protected]
classifiers =
Expand All @@ -11,6 +11,7 @@ classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Topic :: Utilities
Topic :: Scientific/Engineering :: GIS
description = osdatahub is Ordnance Survey's (OS) Python API wrapper, designed to make data from the OS Data Hub APIs readily accessible to developers.
Expand Down
2 changes: 1 addition & 1 deletion src/osdatahub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def set_proxies(proxies):
def get_proxies():
return json.loads(os.environ["_OSDATAHUB_PROXIES"])

__version__ = "1.2.11"
__version__ = "1.3.3"

from osdatahub.extent import Extent
from osdatahub.FeaturesAPI import FeaturesAPI
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = python3.10, python3.11, python3.12, python3.13
envlist = python3.10, python3.11, python3.12, python3.13, python3.14

[testenv]
# install pytest in the virtualenv where commands will be executed
Expand Down