Skip to content

Commit 30cbd19

Browse files
authored
Merge pull request #111 from OrdnanceSurvey/resupported
Removing prior notices and configuring authorship
2 parents 4653acb + 4b6de3b commit 30cbd19

File tree

4 files changed

+8
-18
lines changed

4 files changed

+8
-18
lines changed

CHANGELOG.md

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

3+
## [1.2.11] - 2024/07/08
4+
- Package Resupported - Supported under new team [jmbraybrook]
5+
36
## [1.2.10] - 2024/03/08
47

58
### Changed

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# osdatahub <!-- omit in toc -->
22

3-
4-
> **Important Notice**:
5-
>
6-
> - This Python package is no longer actively maintained and will not receive updates.
7-
> - It may become incompatible with future [OS Data Hub APIs](https://osdatahub.os.uk/).
8-
9-
103
[![GitHub issues](https://img.shields.io/github/issues/OrdnanceSurvey/osdatahub)](https://github.com/OrdnanceSurvey/osdatahub/issues)
114
[![Python package](https://github.com/OrdnanceSurvey/osdatahub/actions/workflows/python-package.yml/badge.svg)](https://github.com/OrdnanceSurvey/osdatahub/actions/workflows/python-package.yml)
125
<a href="https://codeclimate.com/github/dchirst/osdatahub/maintainability"><img src="https://api.codeclimate.com/v1/badges/471fd53dbb22e9e28546/maintainability" /></a>
@@ -352,4 +345,4 @@ pip install -e .[dev]
352345

353346
## Support
354347

355-
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 **[rapidprototyping@os.uk](mailto:rapidprototyping@os.uk)**
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 **[datascience@os.uk](mailto:datascience@os.uk)**

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[metadata]
22
name = osdatahub
3-
version = 1.2.10
4-
author = OS Rapid Prototyping
5-
author_email = rapidprototyping@os.uk
3+
version = 1.2.11
4+
author = OS Data Science
5+
author_email = datascience@os.uk
66
classifiers =
77
Natural Language :: English
88
Intended Audience :: Developers

src/osdatahub/__init__.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
import json
33
import logging
44

5-
message = """Deprecation Warning:
6-
- The osdatahub Python package is no longer actively maintained and will not receive updates.
7-
- It may become incompatible with future OS Data Hub APIs.
8-
"""
9-
logging.warning(message)
10-
115
os.environ["_OSDATAHUB_PROXIES"] = json.dumps({})
126

137
def set_proxies(proxies):
@@ -16,7 +10,7 @@ def set_proxies(proxies):
1610
def get_proxies():
1711
return json.loads(os.environ["_OSDATAHUB_PROXIES"])
1812

19-
__version__ = "1.2.10"
13+
__version__ = "1.2.11"
2014

2115
from osdatahub.extent import Extent
2216
from osdatahub.FeaturesAPI import FeaturesAPI

0 commit comments

Comments
 (0)