From 814be7caf91039b1f8f81ee4d89ca68855a63286 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cau=C3=AA=20Then=C3=B3rio?= Date: Wed, 11 Oct 2023 14:16:09 -0300 Subject: [PATCH] Bumped to v0.1.2 with py3.8 compatibility --- .github/workflows/lint-and-test.yml | 2 +- HISTORY.md | 3 +++ pyproject.toml | 27 +++++++++------------------ src/edne_correios_loader/__about__.py | 2 +- 4 files changed, 14 insertions(+), 20 deletions(-) diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index fc8344e..a6805f8 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/HISTORY.md b/HISTORY.md index 17eb8f3..e58cfd7 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,6 @@ +### v0.1.2 (2023-10-11) + * Added compatibility with python 3.8 + ### v0.1.1 (2023-10-06) * Improved README and added english version * Added extras for MySQL and PostgreSQL driver installation diff --git a/pyproject.toml b/pyproject.toml index 6751892..c172d74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,24 +57,15 @@ dependencies = [ "coverage[toml]>=6.5", "pytest", - # use mock/patch as fixtures - "pytest-mock", - # generate sample data - "faker", - # improve debug prompt - "pdbpp", - # read docker container data in tests - "python-dotenv", - # connect to postgres during tests - "psycopg2-binary", - # connect to mysql during tests - "pymysql", - # required by pymysql - "cryptography", - # run postgres container on demand during tests - "testcontainers-postgres", - # run mysql container on demand during tests - "testcontainers-mysql", + "pytest-mock", # use mock/patch as fixtures + "faker", # generate sample data + "pdbpp", # improve debug prompt + "python-dotenv", # read docker container data in tests + "psycopg-binary", # connect to postgres during tests + "pymysql", # connect to mysql during tests + "cryptography", # required by pymysql + "testcontainers-postgres", # run postgres container on demand during tests + "testcontainers-mysql", # run mysql container on demand during tests ] [tool.hatch.envs.default.scripts] diff --git a/src/edne_correios_loader/__about__.py b/src/edne_correios_loader/__about__.py index 485f44a..b3f4756 100644 --- a/src/edne_correios_loader/__about__.py +++ b/src/edne_correios_loader/__about__.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.1.2"