Skip to content

Commit 42b6081

Browse files
committed
chore: plat wheels are not needed
Poetry doesn't support platform/binary wheels; we don't have any C code
1 parent 0cd7602 commit 42b6081

File tree

4 files changed

+7
-30
lines changed

4 files changed

+7
-30
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.9.5] - 2020-06-02
10+
### Fixed
11+
- **Metrics**: Coerce non-string dimension values to string
12+
- **Logger**: Correct `cold_start`, `function_memory_size` values from string to bool and int respectively
13+
914
## [0.9.4] - 2020-05-29
1015
### Fixed
1116
- **Metrics**: Fix issue where metrics were not correctly flushed, and cleared on every invocation

Diff for: Makefile

+1-6
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,7 @@ release-test:
7070
poetry config pypi-token.pypi ${PYPI_TEST_TOKEN}
7171
poetry publish --repository testpypi -n
7272

73-
build-linux-wheels:
73+
release: pr
7474
poetry build
75-
docker run --env PLAT=manylinux1_x86_64 --rm -it -v ${PWD}:/io -w /io quay.io/pypa/manylinux1_x86_64 /io/build_linux_wheels.sh
76-
cp ./wheelhouse/* dist/ && rm -rf wheelhouse
77-
78-
release:
79-
$(MAKE) build-linux-wheels
8075
$(MAKE) release-test
8176
$(MAKE) release-prod

Diff for: build_linux_wheels.sh

-23
This file was deleted.

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws_lambda_powertools"
3-
version = "0.9.4"
3+
version = "0.9.5"
44
description = "Python utilities for AWS Lambda functions including but not limited to tracing, logging and custom metric"
55
authors = ["Amazon Web Services"]
66
classifiers=[

0 commit comments

Comments
 (0)