Skip to content

Commit 34f67de

Browse files
author
CI
committed
Releasing version 0.1.77
1 parent c6ec8d6 commit 34f67de

File tree

12 files changed

+102
-14
lines changed

12 files changed

+102
-14
lines changed

CHANGELOG.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,86 @@
11
CHANGES
22
=======
33

4+
0.1.77
5+
------
6+
7+
* FDK Python: 0.1.77 version release
8+
9+
0.1.76
10+
------
11+
12+
* FDK Python: 0.1.76 version release
13+
14+
0.1.75
15+
------
16+
17+
* FDK Python: 0.1.75 version release
18+
19+
0.1.74
20+
------
21+
22+
* FDK Python: 0.1.74 version release
23+
24+
0.1.73
25+
------
26+
27+
* FDK Python: 0.1.73 version release
28+
29+
0.1.72
30+
------
31+
32+
* FDK Python: 0.1.72 version release
33+
34+
0.1.71
35+
------
36+
37+
* FDK Python: 0.1.71 version release
38+
39+
0.1.70
40+
------
41+
42+
* FDK Python: 0.1.70 version release
43+
44+
0.1.69
45+
------
46+
47+
* FDK Python: 0.1.69 version release
48+
49+
0.1.68
50+
------
51+
52+
* FDK Python: 0.1.68 version release
53+
54+
0.1.67
55+
------
56+
57+
* FDK Python: 0.1.67 version release
58+
59+
0.1.66
60+
------
61+
62+
* FDK Python: 0.1.66 version release
63+
64+
0.1.65
65+
------
66+
67+
* FDK Python: 0.1.65 version release
68+
69+
0.1.64
70+
------
71+
72+
* FDK Python: 0.1.64 version release
73+
74+
0.1.63
75+
------
76+
77+
* FDK Python: 0.1.63 version release
78+
79+
0.1.62
80+
------
81+
82+
* FDK Python: 0.1.62 version release
83+
484
0.1.61
585
------
686

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
global-include requirements.txt test-requirements.txt
12
exclude ChangeLog
23
exclude github.whitelist
34
exclude *.bak

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Function development kit for Python
2-
The python FDK lets you write functions in python 3.8/3.9
2+
The python FDK lets you write functions in python 3.8/3.9/3.11
33

44
## Simplest possible function
55

@@ -413,7 +413,7 @@ except ValueError as ex:
413413
### Dockerfile
414414
If you've been using CLI to build function without modifying runtime in `func.yaml` to `docker`
415415
instead of `python` then the only thing you need is to update the CLI to the latest version and
416-
pin your Python runtime version to `python`, `python3.7`, `python3.8`, or `python3.9`.
416+
pin your Python runtime version to `python`, `python3.7`, `python3.8`, or `python3.9`, or `python3.11` .
417417

418418
If you've been using custom multi-stage Dockerfile (derived from what Fn CLI generates)
419419
the only thing that is necessary to change is an `ENTRYPOINT` from:

fdk/async_http/request.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
from httptools import parse_url
2121

22-
2322
logger = logging.getLogger(__name__)
2423

2524

fdk/scripts/__init__.py

Whitespace-only changes.

fdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '0.1.61'
1+
VERSION = '0.1.77'

requirements.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
pbr==5.4.5
1+
pbr>=5.11.1
22
iso8601==0.1.12
3-
pytest==5.4.3
3+
pytest>=5.4.3
44
pytest-asyncio==0.12.0
5-
httptools==0.4.0
6-
contextvars==2.4;python_version<"3.7"
5+
httptools>=0.5.0
6+
contextvars==2.4;python_version>="3.7"
7+
Cython>=3.0.0
8+
9+

samples/__init__.py

Whitespace-only changes.

samples/echo/__init__.py

Whitespace-only changes.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifier =
2020
Operating System :: POSIX :: Linux
2121
Programming Language :: Python
2222
Programming Language :: Python :: 3
23-
Programming Language :: Python :: 3.9
23+
Programming Language :: Python :: 3.11
2424

2525
[files]
2626
packages =

0 commit comments

Comments
 (0)