Skip to content

Commit

Permalink
Merge pull request #162 from ivankudinov-termius/release/1.2.14
Browse files Browse the repository at this point in the history
Release/1.2.14
  • Loading branch information
Maxbey authored Dec 3, 2020
2 parents 90cb18c + 4790b9b commit 234d010
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 32 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[bumpversion]
current_version = 1.2.12
current_version = 1.2.14
commit = True
tag = True

[bumpversion:file:termius/__init__.py]

17 changes: 17 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Description of the change

Description here

## Type of change

- [ ] Feature
- [ ] Codebase Improvements
- [ ] Critical security bugs
- [ ] Hotfix

## Reviewer's checklist

- [ ] The code does not have any obvious logic errors.
- [ ] All cases specified in the requirements are fully implemented.
- [ ] There is sufficient automated testing for the new code. Existing automated tests were rewritten to account for code changes.
- [ ] The new code conforms to existing style guidelines.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
env:
TERMIUS_CLI_DEBUG: True
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-verion }}
uses: actions/checkout@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
git clone https://github.com/sstephenson/bats.git && cd bats && ./install.sh .. && cd -
sudo apt-get install pandoc
pip install -U pip setuptools
pip install -r dev-requirements.txt
pip install codecov
- name: Build
run: pip install -U -e .
- name: Run lint
run: PATH=~/.local/bin:$PATH paver lint
- name: Run coverage
run: PATH=~/.local/bin:$PATH paver coverage
- name: Run bats
run: PATH=~/.local/bin:$PWD/bin:$PATH paver bats
- name: Run codecov
run: PATH=~/.local/bin:$PATH codecov
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,3 @@ prospector[with_pyroma]==1.1.6.2; python_version <= "3.5"

pyflakes==2.2.0; python_version >= "3.7"
pyflakes==1.6.0; python_version < "3.7"

cryptography==3.0; python_version == "3.5"
cryptography==2.9; python_version == "2.7"
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@
'cliff==2.7.0',
'stevedore>=1.10.0',
'requests>=2.7.0',
'cryptography>=1.3.1',
'cryptography>=1.3.1; python_version >= "3.6"',
'cryptography==3.0; python_version == "3.5"',
'cryptography==2.9; python_version == "2.7"',
'six>=1.10.0',
'ndg-httpsclient>=0.4.0',
'pyopenssl>=0.15.1',
'pyopenssl>=0.15.1; python_version >= "3.6"',
'pyopenssl>=0.15.1,<=19.1.0; python_version == "2.7" or python_version == "3.5"',
'cached-property>=1.3.0',
'paramiko>=1.16.0',
'pathlib2>=2.1.0',
Expand Down Expand Up @@ -86,8 +89,11 @@ def get_long_description():
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Utilities',
],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion termius/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package with CLI tool and API."""
__version__ = '1.2.12'
__version__ = '1.2.14'

0 comments on commit 234d010

Please sign in to comment.