We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c903cb + aa01381 commit afa08aaCopy full SHA for afa08aa
publish_package.sh
@@ -0,0 +1,23 @@
1
+#!/usr/bin/env bash
2
+
3
+# Copyright (c) 2017-2022 Postgres Professional
4
5
+set -eux
6
7
+# prepare environment
8
+venv_path=.venv
9
+rm -rf "$venv_path"
10
+virtualenv "$venv_path"
11
+export VIRTUAL_ENV_DISABLE_PROMPT=1
12
+. "$venv_path"/bin/activate
13
14
+# install utilities
15
+pip3 install setuptools twine
16
17
+# create distribution of the package
18
+python3 setup.py sdist bdist_wheel
19
20
+# upload dist
21
+twine upload dist/*
22
23
+set +eux
setup.py
@@ -21,7 +21,7 @@
readme = f.read()
setup(
24
- version='1.8.5',
+ version='1.8.6',
25
name='testgres',
26
packages=['testgres'],
27
description='Testing utility for PostgreSQL and its extensions',
0 commit comments