Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# The short X.Y version
version = u''
# The full version, including alpha/beta/rc tags
release = u'1.13.2'
release = u'1.13.3'

# -- General configuration ---------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exclude = [".git", "__pycache__", "env", "venv"]

[project]
name = "testgres"
version = "1.13.2"
version = "1.13.3"

description = "Testing utility for PostgreSQL and its extensions"
readme = "README.md"
Expand All @@ -30,7 +30,7 @@ keywords = [
'postgresql',
]

requires-python = ">=3.7.17"
requires-python = ">=3.7.3"

classifiers = [
"Intended Audience :: Developers",
Expand All @@ -54,7 +54,7 @@ dependencies = [
"six>=1.9.0",
"psutil",
"packaging",
"testgres.os_ops>=2.0.1,<3.0.0",
"testgres.os_ops>=2.0.2,<3.0.0",
]

[project.urls]
Expand Down
5 changes: 0 additions & 5 deletions run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ export VIRTUAL_ENV_DISABLE_PROMPT=1
source "${VENV_PATH}/bin/activate"
pip install -r tests/requirements.txt

# test code quality
pip install flake8 flake8-pyproject
flake8 .
pip uninstall -y flake8 flake8-pyproject

# remove existing coverage file
export COVERAGE_FILE=.coverage
rm -f $COVERAGE_FILE
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pytest
pytest-xdist
psycopg2
six
testgres.os_ops>=2.0.1,<3.0.0
testgres.os_ops>=2.0.2,<3.0.0