Skip to content

Commit

Permalink
Merge pull request #33 from izhatomic/deploy
Browse files Browse the repository at this point in the history
testing
  • Loading branch information
izhatomic committed May 17, 2023
2 parents f361747 + 518aece commit be1af86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install build
pip install twine
- name: Build package
run: |
python -m build --sdist --wheel
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
# if: startsWith(github.ref, 'refs/tags')
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Mattermost-API"
version = "0.13"
version = "0.14"
authors = [
{ name="Aleksandr Kuznetsov", email="izhatomic@yandex.ru" },
{ name="Aleksandr Zarin", email="vector-777@yandex.ru" },
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
with open('README.md') as readme_file:
README = readme_file.read()

# with open('HISTORY.md') as history_file:
# HISTORY = history_file.read()
HISTORY = ""
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
# HISTORY = ""

setup_args = dict(
name='Mattermost-API',
version='0.13',
version='0.14',
description='Simple Mattermost API library',
long_description_content_type="text/markdown",
long_description=README + '\n\n' + HISTORY,
Expand Down

0 comments on commit be1af86

Please sign in to comment.