Skip to content

Commit 1248685

Browse files
Merge pull request #147 from OneBusAway/release-please--branches--main--changes--next
release: 1.2.5
2 parents 7d57b5d + c838cdf commit 1248685

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.2.4"
2+
".": "1.2.5"
33
}

CHANGELOG.md

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

3+
## 1.2.5 (2024-11-06)
4+
5+
Full Changelog: [v1.2.4...v1.2.5](https://github.com/OneBusAway/python-sdk/compare/v1.2.4...v1.2.5)
6+
7+
### Chores
8+
9+
* rebuild project due to codegen change ([#144](https://github.com/OneBusAway/python-sdk/issues/144)) ([8a06a1e](https://github.com/OneBusAway/python-sdk/commit/8a06a1eb978f762a36d17dc9ff83fbc8a13493a8))
10+
* rebuild project due to codegen change ([#146](https://github.com/OneBusAway/python-sdk/issues/146)) ([2dcaaff](https://github.com/OneBusAway/python-sdk/commit/2dcaaffbd9de815c6a1b26091e142c1f94bb5e4e))
11+
312
## 1.2.4 (2024-11-04)
413

514
Full Changelog: [v1.2.3...v1.2.4](https://github.com/OneBusAway/python-sdk/compare/v1.2.3...v1.2.4)

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
[![PyPI version](https://img.shields.io/pypi/v/onebusaway.svg)](https://pypi.org/project/onebusaway/)
44

5-
The OneBusAway SDK Python library provides convenient access to the OneBusAway SDK REST API from any Python 3.7+
5+
6+
The Onebusaway SDK Python library provides convenient access to the Onebusaway SDK REST API from any Python 3.8+
7+
68
application. The library includes type definitions for all request params and response fields,
79
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
810

@@ -312,7 +314,7 @@ print(onebusaway.__version__)
312314

313315
## Requirements
314316

315-
Python 3.7 or higher.
317+
Python 3.8 or higher.
316318

317319
## Contributing
318320

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "onebusaway"
3-
version = "1.2.4"
3+
version = "1.2.5"
44
description = "The official Python library for the onebusaway-sdk API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
@@ -16,11 +16,10 @@ dependencies = [
1616
"sniffio",
1717
"cached-property; python_version < '3.8'",
1818
]
19-
requires-python = ">= 3.7"
19+
requires-python = ">= 3.8"
2020
classifiers = [
2121
"Typing :: Typed",
2222
"Intended Audience :: Developers",
23-
"Programming Language :: Python :: 3.7",
2423
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
@@ -139,7 +138,7 @@ filterwarnings = [
139138
# there are a couple of flags that are still disabled by
140139
# default in strict mode as they are experimental and niche.
141140
typeCheckingMode = "strict"
142-
pythonVersion = "3.7"
141+
pythonVersion = "3.8"
143142

144143
exclude = [
145144
"_dev",

src/onebusaway/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "onebusaway"
4-
__version__ = "1.2.4" # x-release-please-version
4+
__version__ = "1.2.5" # x-release-please-version

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ class Model(BaseModel):
696696
[3, "", 0.5],
697697
[2, "", 0.5 * 2.0],
698698
[1, "", 0.5 * 4.0],
699-
[-1100, "", 7.8], # test large number potentially overflowing
699+
[-1100, "", 8], # test large number potentially overflowing
700700
],
701701
)
702702
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))
@@ -1463,7 +1463,7 @@ class Model(BaseModel):
14631463
[3, "", 0.5],
14641464
[2, "", 0.5 * 2.0],
14651465
[1, "", 0.5 * 4.0],
1466-
[-1100, "", 7.8], # test large number potentially overflowing
1466+
[-1100, "", 8], # test large number potentially overflowing
14671467
],
14681468
)
14691469
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))

0 commit comments

Comments
 (0)