Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitafa08aa

Browse files
authored
Merge pull request#77 from postgrespro/master-requirements
Update version script
2 parents5c903cb +aa01381 commitafa08aa

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

‎publish_package.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
readme=f.read()
2222

2323
setup(
24-
version='1.8.5',
24+
version='1.8.6',
2525
name='testgres',
2626
packages=['testgres'],
2727
description='Testing utility for PostgreSQL and its extensions',

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp