From db43ec4f4eb9e5ddb79142edc4f89fad0a35ee0e Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Fri, 18 Nov 2022 06:28:58 +0100 Subject: [PATCH 1/4] :wrench: ensure pytest catch built whl codecov depends on requests..! --- .github/workflows/python-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index aa74362f..19a31ed3 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -222,8 +222,8 @@ jobs: CIBW_ENVIRONMENT: CHARSET_NORMALIZER_USE_MYPYC='1' CIBW_BEFORE_BUILD: pip install -r build-requirements.txt #CIBW_CONFIG_SETTINGS: "--build-option=--no-isolation" - CIBW_TEST_REQUIRES: pytest codecov pytest-cov - CIBW_TEST_COMMAND: pytest {package}/tests + CIBW_TEST_REQUIRES: pytest + CIBW_TEST_COMMAND: pytest -c {package} {package}/tests CIBW_SKIP: pp* - name: Upload artifacts uses: actions/upload-artifact@v3 From 457d4e3b73c7de72c1613f890ad7e0a6dec55bad Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Fri, 18 Nov 2022 06:29:19 +0100 Subject: [PATCH 2/4] :bookmark: bump version 3.0.1 --- charset_normalizer/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charset_normalizer/version.py b/charset_normalizer/version.py index 287d7493..cb503673 100644 --- a/charset_normalizer/version.py +++ b/charset_normalizer/version.py @@ -2,5 +2,5 @@ Expose version """ -__version__ = "3.0.1-dev" +__version__ = "3.0.1" VERSION = __version__.split(".") From bc11bb7330fa5cd6cd6a5bec197d0cc823b166a4 Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Fri, 18 Nov 2022 06:29:39 +0100 Subject: [PATCH 3/4] :pencil: update changelog --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15542a76..d220982f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,14 @@ All notable changes to charset-normalizer will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [3.0.1](https://github.com/Ousret/charset_normalizer/compare/3.0.0...master) (unreleased) +## [3.0.1](https://github.com/Ousret/charset_normalizer/compare/3.0.0...3.0.1) (2022-11-18) ### Fixed - Multi-bytes cutter/chunk generator did not always cut correctly (PR #233) +### Changed +- Speedup provided by mypy/c 0.990 on Python >= 3.7 + ## [3.0.0](https://github.com/Ousret/charset_normalizer/compare/2.1.1...3.0.0) (2022-10-20) ### Added From 1591af5ad101af3f5fa225f1ce03058dcc4d913d Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Fri, 18 Nov 2022 06:30:05 +0100 Subject: [PATCH 4/4] :wrench: use 3.11 final in ci-publish step test --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 19a31ed3..325eb1e1 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -52,7 +52,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", "3.11-dev" ] + python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", "3.11" ] os: [ ubuntu-latest ] steps: