Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing prior notices and configuring authorship #111

Merged
merged 1 commit into from
Jul 10, 2024
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
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
Loading