Skip to content

Commit 22a3a6e

Browse files
Remove py3.8 support, update github links
1 parent 8db403a commit 22a3a6e

File tree

11 files changed

+22
-16
lines changed

11 files changed

+22
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [0.12.1] - 2024-11-28
88

9+
+ Remove python 3.8 support
10+
+ Update GitHub location in docs
11+
12+
## [0.12.1] - 2024-11-28
13+
914
+ Fix bug in API request when twice-daily forecast was used.
1015

1116
## [0.12.0] - 2024-11-27

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
_A Python module for accessing weather data via the [Met Office](http://www.metoffice.gov.uk/)'s open data API
88
known as [DataPoint](http://www.metoffice.gov.uk/datapoint)._
99

10+
__For personal reasons I have changed my GitHub username. The repository location has changed. The homepage link on PyPi is up-to-date__
11+
1012
__Disclaimer: This module is in no way part of the DataPoint project/service.
1113
This module is intended to simplify the use of DataPoint for small Python projects (e.g school projects).
1214
No support for this module is provided by the Met Office and may break as the DataPoint service grows/evolves.
@@ -60,7 +62,7 @@ Example output
6062
London - Heavy rain
6163
```
6264

63-
See [examples directory](https://github.com/ejep/datapoint-python/tree/master/examples) for more in depth examples.
65+
See [examples directory](https://github.com/Perseudonymous/datapoint-python/tree/master/examples) for more in depth examples.
6466

6567
## Contributing changes
6668

docs/source/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ Further Examples
6767
----------------
6868

6969
For more code examples please have a look in the `examples
70-
folder <https://github.com/ejep/datapoint-python/tree/master/examples>`__
70+
folder <https://github.com/perseudonymous/datapoint-python/tree/master/examples>`__
7171
in the GitHub project.

docs/source/install.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DataPoint for Python can be installed like any other Python module.
55

66
It is available on `PyPI <https://pypi.python.org/pypi/datapoint/>`__
77
and the source is available on
8-
`GitHub <https://github.com/ejep/datapoint-python>`__.
8+
`GitHub <https://github.com/perseudonymous/datapoint-python>`__.
99

1010
Pip
1111
---
@@ -21,26 +21,26 @@ or for the very latest code from the repository’s master branch run:
2121

2222
::
2323

24-
pip install git+git://github.com/ejep/datapoint-python.git@master
24+
pip install git+git://github.com/perseudonymous/datapoint-python.git@master
2525

2626
and to upgrade it in the future:
2727

2828
::
2929

30-
pip install git+git://github.com/ejep/datapoint-python.git@master --upgrade
30+
pip install git+git://github.com/perseudonymous/datapoint-python.git@master --upgrade
3131

3232
Source
3333
------
3434

3535
You can also install from the source in GitHub.
3636

3737
First checkout the GitHub repository (or you can `download the
38-
zip <https://github.com/ejep/datapoint-python/archive/master.zip>`__
38+
zip <https://github.com/perseudonymous/datapoint-python/archive/master.zip>`__
3939
and extract it).
4040

4141
::
4242

43-
git clone https://github.com/ejep/datapoint-python.git datapoint-python
43+
git clone https://github.com/perseudonymous/datapoint-python.git datapoint-python
4444

4545
Navigate to that directory
4646

examples/current_weather/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
_This example displays the current weather and temperature for your location._
44

55
### Required Modules
6-
* [datapoint](https://github.com/ejep/datapoint-python)
6+
* [datapoint](https://github.com/perseudonymous/datapoint-python)
77

88
## Learning Objective
99

examples/postcodes_to_lat_lng/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
_A variation on current_weather.py which uses postcodes rather than lon lat._
44

55
### Required Modules
6-
* [datapoint](https://github.com/ejep/datapoint-python)
6+
* [datapoint](https://github.com/perseudonymous/datapoint-python)
77
* [python-postcodes-io](https://github.com/raigad/python-postcodes-io)
88

99
## Learning Objective

examples/simple_forecast/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _This example gets a 5 day forecast for your location and prints out
44
some values from each timestep for each day._
55

66
### Required Modules
7-
* [datapoint](https://github.com/ejep/datapoint-python)
7+
* [datapoint](https://github.com/perseudonymous/datapoint-python)
88

99
## Learning Objective
1010

examples/tube_bike/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ for London to advise you on whether you should cycle or catch the tube around
55
London._
66

77
### Required Modules
8-
* [datapoint](https://github.com/ejep/datapoint-python)
8+
* [datapoint](https://github.com/perseudonymous/datapoint-python)
99
* [tubestatus](https://github.com/jacobtomlinson/tube-status)
1010

1111
## Learning Objective

examples/umbrella/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _This example checks the forecast for your current location to see if it is goin
44
to rain at any stage today. If so it will suggest that you take an umbrella._
55

66
### Required Modules
7-
* [datapoint](https://github.com/ejep/datapoint-python)
7+
* [datapoint](https://github.com/perseudonymous/datapoint-python)
88

99
## Learning Objective
1010

examples/washing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _This example looks at the forecast for the next 5 days and suggests which day
44
(if any) would be best for hanging your washing out to dry._
55

66
### Required Modules
7-
* [datapoint](https://github.com/ejep/datapoint-python)
7+
* [datapoint](https://github.com/perseudonymous/datapoint-python)
88

99
## Learning Objective
1010

0 commit comments

Comments
 (0)