Skip to content

Commit 25b2997

Browse files
Gobot1234bbonenfant
authored andcommitted
Drop support for python3.6 (danielgtaylor#444)
# Conflicts: # poetry.lock
1 parent 41465bf commit 25b2997

File tree

6 files changed

+1158
-999
lines changed

6 files changed

+1158
-999
lines changed

.github/workflows/ci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [Ubuntu, MacOS, Windows]
19-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
20-
exclude:
21-
- os: Windows
22-
python-version: 3.6
19+
python-version: ['3.7', '3.8', '3.9', '3.10']
2320
steps:
2421
- uses: actions/checkout@v2
2522

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This project aims to provide an improved experience when using Protobuf / gRPC i
77

88
- Protobuf 3 & gRPC code generation
99
- Both binary & JSON serialization is built-in
10-
- Python 3.6+ making use of:
10+
- Python 3.7+ making use of:
1111
- Enums
1212
- Dataclasses
1313
- `async`/`await`
@@ -371,7 +371,7 @@ datetime.datetime(2019, 1, 1, 11, 59, 58, 800000, tzinfo=datetime.timezone.utc)
371371

372372
### Requirements
373373

374-
- Python (3.6 or higher)
374+
- Python (3.7 or higher)
375375

376376
- [poetry](https://python-poetry.org/docs/#installation)
377377
*Needed to install dependencies in a virtual environment*
@@ -447,7 +447,7 @@ poe full-test
447447
Betterproto includes compiled versions for Google's well-known types at [betterproto/lib/google](betterproto/lib/google).
448448
Be sure to regenerate these files when modifying the plugin output format, and validate by running the tests.
449449

450-
Normally, the plugin does not compile any references to `google.protobuf`, since they are pre-compiled. To force compilation of `google.protobuf`, use the option `--custom_opt=INCLUDE_GOOGLE`.
450+
Normally, the plugin does not compile any references to `google.protobuf`, since they are pre-compiled. To force compilation of `google.protobuf`, use the option `--custom_opt=INCLUDE_GOOGLE`.
451451

452452
Assuming your `google.protobuf` source files (included with all releases of `protoc`) are located in `/usr/local/include`, you can regenerate them as follows:
453453

benchmarks/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

0 commit comments

Comments
 (0)