Skip to content

Commit 6e7a564

Browse files
authored
Merge pull request #128 from OrdnanceSurvey/python-updates-314
Updating documentation and Configuration to include Python Version 3.14
2 parents 875666c + 0206fa8 commit 6e7a564

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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

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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def set_proxies(proxies):
1010
def get_proxies():
1111
return json.loads(os.environ["_OSDATAHUB_PROXIES"])
1212

13-
__version__ = "1.2.11"
13+
__version__ = "1.3.3"
1414

1515
from osdatahub.extent import Extent
1616
from osdatahub.FeaturesAPI import FeaturesAPI

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)