Skip to content

Commit

Permalink
Merge pull request #111 from OrdnanceSurvey/resupported
Browse files Browse the repository at this point in the history
Removing prior notices and configuring authorship
  • Loading branch information
jmbraybrook authored Jul 10, 2024
2 parents 4653acb + 4b6de3b commit 30cbd19
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 18 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.2.11] - 2024/07/08
- Package Resupported - Supported under new team [jmbraybrook]

## [1.2.10] - 2024/03/08

### Changed
Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
# osdatahub <!-- omit in toc -->


> **Important Notice**:
>
> - This Python package is no longer actively maintained and will not receive updates.
> - It may become incompatible with future [OS Data Hub APIs](https://osdatahub.os.uk/).

[![GitHub issues](https://img.shields.io/github/issues/OrdnanceSurvey/osdatahub)](https://github.com/OrdnanceSurvey/osdatahub/issues)
[![Python package](https://github.com/OrdnanceSurvey/osdatahub/actions/workflows/python-package.yml/badge.svg)](https://github.com/OrdnanceSurvey/osdatahub/actions/workflows/python-package.yml)
<a href="https://codeclimate.com/github/dchirst/osdatahub/maintainability"><img src="https://api.codeclimate.com/v1/badges/471fd53dbb22e9e28546/maintainability" /></a>
Expand Down Expand Up @@ -352,4 +345,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 **[rapidprototyping@os.uk](mailto:rapidprototyping@os.uk)**
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)**
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[metadata]
name = osdatahub
version = 1.2.10
author = OS Rapid Prototyping
author_email = rapidprototyping@os.uk
version = 1.2.11
author = OS Data Science
author_email = datascience@os.uk
classifiers =
Natural Language :: English
Intended Audience :: Developers
Expand Down
8 changes: 1 addition & 7 deletions src/osdatahub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
import json
import logging

message = """Deprecation Warning:
- The osdatahub Python package is no longer actively maintained and will not receive updates.
- It may become incompatible with future OS Data Hub APIs.
"""
logging.warning(message)

os.environ["_OSDATAHUB_PROXIES"] = json.dumps({})

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

__version__ = "1.2.10"
__version__ = "1.2.11"

from osdatahub.extent import Extent
from osdatahub.FeaturesAPI import FeaturesAPI
Expand Down

0 comments on commit 30cbd19

Please sign in to comment.