Skip to content

Commit 27df510

Browse files
Version 1.13.3 (min python is 3.7.3) (#332)
run_tests.sh does not run flake8.
1 parent 8be60d4 commit 27df510

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# The short X.Y version
3434
version = u''
3535
# The full version, including alpha/beta/rc tags
36-
release = u'1.13.2'
36+
release = u'1.13.3'
3737

3838
# -- General configuration ---------------------------------------------------
3939

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude = [".git", "__pycache__", "env", "venv"]
1111

1212
[project]
1313
name = "testgres"
14-
version = "1.13.2"
14+
version = "1.13.3"
1515

1616
description = "Testing utility for PostgreSQL and its extensions"
1717
readme = "README.md"
@@ -30,7 +30,7 @@ keywords = [
3030
'postgresql',
3131
]
3232

33-
requires-python = ">=3.7.17"
33+
requires-python = ">=3.7.3"
3434

3535
classifiers = [
3636
"Intended Audience :: Developers",
@@ -54,7 +54,7 @@ dependencies = [
5454
"six>=1.9.0",
5555
"psutil",
5656
"packaging",
57-
"testgres.os_ops>=2.0.1,<3.0.0",
57+
"testgres.os_ops>=2.0.2,<3.0.0",
5858
]
5959

6060
[project.urls]

run_tests.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ export VIRTUAL_ENV_DISABLE_PROMPT=1
1818
source "${VENV_PATH}/bin/activate"
1919
pip install -r tests/requirements.txt
2020

21-
# test code quality
22-
pip install flake8 flake8-pyproject
23-
flake8 .
24-
pip uninstall -y flake8 flake8-pyproject
25-
2621
# remove existing coverage file
2722
export COVERAGE_FILE=.coverage
2823
rm -f $COVERAGE_FILE

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ pytest
33
pytest-xdist
44
psycopg2
55
six
6-
testgres.os_ops>=2.0.1,<3.0.0
6+
testgres.os_ops>=2.0.2,<3.0.0

0 commit comments

Comments
 (0)