Skip to content
Snippets Groups Projects
Unverified Commit 3ea620c4 authored by Georgiy Eterevskiy's avatar Georgiy Eterevskiy Committed by GitHub
Browse files

Merge pull request #16 from perxteam/feature/upgrade_reqs_and_proto

Обновлены зависимости, добавлен pipeline для сборки production версии пакета
parents e921203a 396e904c
No related branches found
No related tags found
No related merge requests found
---
kind: pipeline kind: pipeline
name: default name: develop
trigger: trigger:
event: event:
- push - push
- tag
branch: branch:
- master - master
refs:
- refs/tags/v*
steps: steps:
- name: upload-python-client - name: Upload to pypi
image: python:3.8-alpine image: python:3.8-alpine
environment: environment:
PYPI_REPO: PYPI_REPO: https://pypi.perx.ru/
from_secret: pypi_repo_dev
PYPI_PASSWORD: PYPI_PASSWORD:
from_secret: pypi_password from_secret: pypi_password
commands: commands:
- apk add bash make gcc g++ linux-headers musl-dev - apk add bash make gcc g++ linux-headers musl-dev
- make release - make release
when: ---
branch: [ "master" ] kind: pipeline
event: [ "push" ] name: production
trigger:
event:
- tag
refs:
- refs/tags/v*
steps:
- name: Upload to pypi
image: python:3.8-alpine
environment:
PYPI_REPO: https://pypi.perx.ru/
PYPI_PASSWORD:
from_secret: pypi_password_prod
commands:
- apk add bash make gcc g++ linux-headers musl-dev
- make release
\ No newline at end of file
...@@ -3,35 +3,35 @@ backports.entry-points-selectable==1.1.1 ...@@ -3,35 +3,35 @@ backports.entry-points-selectable==1.1.1
build==0.7.0 build==0.7.0
certifi==2021.10.8 certifi==2021.10.8
chardet==4.0.0 chardet==4.0.0
charset-normalizer==2.0.9 charset-normalizer==2.0.12
check-manifest==0.47 check-manifest==0.47
devpi-client==5.2.3 devpi-client==5.2.3
devpi-common==3.6.0 devpi-common==3.6.0
distlib==0.3.3 distlib==0.3.4
filelock==3.4.0 filelock==3.6.0
flake8==4.0.1 flake8==4.0.1
grpcio==1.42.0 grpcio==1.43.0
grpcio-tools==1.42.0 grpcio-tools==1.43.0
idna==3.3 idna==3.3
importlib-metadata==4.8.2 importlib-metadata==4.11.2
lazy==1.4 lazy==1.4
mccabe==0.6.1 mccabe==0.7.0
packaging==21.3 packaging==21.3
pep517==0.12.0 pep517==0.12.0
pkginfo==1.8.2 pkginfo==1.8.2
platformdirs==2.4.0 platformdirs==2.5.1
pluggy==1.0.0 pluggy==1.0.0
protobuf==3.19.1 protobuf==3.19.4
py==1.11.0 py==1.11.0
pycodestyle==2.8.0 pycodestyle==2.8.0
pyflakes==2.4.0 pyflakes==2.4.0
pyparsing==3.0.6 pyparsing==3.0.7
requests==2.26.0 requests==2.27.1
six==1.16.0 six==1.16.0
toml==0.10.2 toml==0.10.2
tomli==1.2.2 tomli==2.0.1
tox==3.24.4 tox==3.24.5
typing_extensions==4.0.1 typing_extensions==4.1.1
urllib3==1.26.7 urllib3==1.26.8
virtualenv==20.10.0 virtualenv==20.13.2
zipp==3.6.0 zipp==3.7.0
certifi==2021.10.8 certifi==2021.10.8
chardet==4.0.0 chardet==4.0.0
charset-normalizer==2.0.9 charset-normalizer==2.0.12
grpcio==1.42.0 grpcio==1.43.0
idna==3.3 idna==3.3
oauthlib==3.1.1 oauthlib==3.2.0
protobuf==3.19.1 protobuf==3.19.4
PyJWT==2.3.0 PyJWT==2.3.0
requests==2.26.0 requests==2.27.1
requests-oauthlib==1.3.0 requests-oauthlib==1.3.1
six==1.16.0 six==1.16.0
urllib3==1.26.7 urllib3==1.26.8
...@@ -14,7 +14,7 @@ def load_requirements(): ...@@ -14,7 +14,7 @@ def load_requirements():
setup( setup(
name='perxis', name='perxis',
version='0.0.7', version='0.0.8',
description='Perxis python client', description='Perxis python client',
long_description=long_description, long_description=long_description,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment