Skip to content

Commit a8bafd5

Browse files
chore(internal): version bump (#375)
1 parent 0ef33cb commit a8bafd5

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-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-
".": "0.2.0-alpha.35"
2+
".": "0.2.0-alpha.36"
33
}

README.md

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

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

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

@@ -438,7 +438,7 @@ print(openlayer.__version__)
438438

439439
## Requirements
440440

441-
Python 3.7 or higher.
441+
Python 3.8 or higher.
442442

443443
## Contributing
444444

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openlayer"
3-
version = "0.2.0-alpha.35"
3+
version = "0.2.0-alpha.36"
44
description = "The official Python library for the openlayer 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/openlayer/_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__ = "openlayer"
4-
__version__ = "0.2.0-alpha.35" # x-release-please-version
4+
__version__ = "0.2.0-alpha.36" # x-release-please-version

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ class Model(BaseModel):
702702
[3, "", 0.5],
703703
[2, "", 0.5 * 2.0],
704704
[1, "", 0.5 * 4.0],
705-
[-1100, "", 7.8], # test large number potentially overflowing
705+
[-1100, "", 8], # test large number potentially overflowing
706706
],
707707
)
708708
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))
@@ -1574,7 +1574,7 @@ class Model(BaseModel):
15741574
[3, "", 0.5],
15751575
[2, "", 0.5 * 2.0],
15761576
[1, "", 0.5 * 4.0],
1577-
[-1100, "", 7.8], # test large number potentially overflowing
1577+
[-1100, "", 8], # test large number potentially overflowing
15781578
],
15791579
)
15801580
@mock.patch("time.time", mock.MagicMock(return_value=1696004797))

0 commit comments

Comments
 (0)