diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 508e7c4..8bbf861 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 diff --git a/README.md b/README.md index a4fb438..54d1ecd 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 **[datascience@os.uk](mailto:datascience@os.uk)** +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)** diff --git a/docs/conf.py b/docs/conf.py index 07cccd3..7d7b7a0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 --------------------------------------------------- diff --git a/recipes/meta.yaml b/recipes/meta.yaml index 04ebc7e..b9e751d 100644 --- a/recipes/meta.yaml +++ b/recipes/meta.yaml @@ -1,6 +1,6 @@ {% set name = "osdatahub" %} -{% set version = "1.3.2" %} +{% set version = "1.3.3" %} package: diff --git a/setup.cfg b/setup.cfg index e0cecde..9a5fe09 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = osdatahub -version = 1.3.2 +version = 1.3.3 author = OS Data Science author_email = datascience@os.uk classifiers = @@ -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. diff --git a/src/osdatahub/__init__.py b/src/osdatahub/__init__.py index bf46e3e..27f69b5 100644 --- a/src/osdatahub/__init__.py +++ b/src/osdatahub/__init__.py @@ -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 diff --git a/tox.ini b/tox.ini index 7a2707b..0a61341 100644 --- a/tox.ini +++ b/tox.ini @@ -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