Skip to content

Commit

Permalink
Bumped to v0.1.2 with py3.8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cauethenorio committed Oct 11, 2023
1 parent 7dcc6b9 commit 814be7c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
27 changes: 9 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion src/edne_correios_loader/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.1.2"

0 comments on commit 814be7c

Please sign in to comment.