This repository was archived by the owner on Aug 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +72
-7
lines changed Expand file tree Collapse file tree 3 files changed +72
-7
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,11 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7- ## 0.8.0 (Mar 21, 2022)
8-
97### Added
108
119- Support for SQLAlchemy 2.0+
1210- Added internal support for the new psycopg dialect.
1311
14- ### Changed
15-
16- - Removed support for python 3.7 in favour to 3.8.
17- - Python 3.7 support will end in June 2023
18-
1912## 0.7.0 (Dec 18th, 2022)
2013
2114### Fixed
Original file line number Diff line number Diff line change 1+ .DEFAULT_GOAL := help
2+
3+ .PHONY : help
4+ help :
5+ @grep -E ' ^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
6+
7+ .PHONY : clean
8+ clean : clean_pyc # # Clean all PYC in the system
9+
10+ .PHONY : clean_pyc
11+ clean_pyc : # # Cleans all *.pyc in the system
12+ find . -type f -name " *.pyc" -delete || true
13+
14+ .PHONY : clean_pycache
15+ clean_pycache : # # Removes the __pycaches__
16+ find . -type d -name " *__pycache__*" -delete
17+
18+ .PHONY : serve-docs
19+ serve-docs : # # Runs the local docs
20+ mkdocs serve
21+
22+ .PHONY : build-docs
23+ build-docs : # # Runs the local docs
24+ mkdocs build
25+
26+ .PHONY : test
27+ test : # # Runs the tests
28+ pytest $(TESTONLY ) --disable-pytest-warnings -s -vv && scripts/clean
29+
30+ .PHONY : requirements
31+ requirements : # # Install requirements for development
32+ pip install -r requirements.txt
33+
34+ ifndef VERBOSE
35+ .SILENT :
36+ endif
Original file line number Diff line number Diff line change 1+ version : " 3.8"
2+ services :
3+ db :
4+ restart : always
5+ image : postgres:14
6+ environment :
7+ POSTGRES_HOST_AUTH_METHOD : trust
8+ POSTGRES_USER : " postgres"
9+ POSTGRES_PASSWORD : " postgres"
10+ POSTGRES_DB : " testsuite"
11+ expose :
12+ - " 5432"
13+ ports :
14+ - " 5432:5432"
15+
16+ mysql :
17+ restart : always
18+ image : mysql:5.7
19+ environment :
20+ MYSQL_USER : " mysql"
21+ MYSQL_PASSWORD : " mysql"
22+ MYSQL_DATABASE : " testsuite"
23+ MYSQL_ROOT_PASSWORD : " password"
24+ expose :
25+ - " 3306"
26+ ports :
27+ - " 3306:3306"
28+ command : --default-authentication-plugin=mysql_native_password
29+
30+ redis :
31+ restart : always
32+ image : redis:latest
33+ ports :
34+ - " 6379:6379"
35+ expose :
36+ - " 6379"
You can’t perform that action at this time.
0 commit comments