Skip to content

Commit

Permalink
Merge pull request #25 from pnemade/master
Browse files Browse the repository at this point in the history
sync to Master branch
  • Loading branch information
pnemade authored Jun 9, 2020
2 parents 0129f06 + d6e7e80 commit 56d8a4d
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"

addons:
apt:
Expand All @@ -14,6 +14,6 @@ addons:
- python-dev

install:
- pip install -r requirements.txt
- pip install -r requirements/ci.txt

script: "python setup.py flake8 test"
4 changes: 4 additions & 0 deletions Changlog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

0.4.0 (2020-07-09)
-----------------
- Dropping flake8 dependency (pnemade)

0.3.0 (2019-08-02)
-----------------
- Add new options exist and health to package command (pnemade)
Expand Down
10 changes: 5 additions & 5 deletions docs/man/transtats.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" transtats - Command line interface for transtats
.TH "TRANSTATS" "1" "August 2018-2019" "transtats 0.3.0" "User Commands"
.TH "TRANSTATS" "1" "9th June 2020" "transtats 0.4.0" "User Commands"
.SH "NAME"
transtats \- Command line interface for transtats
.SH "SYNOPSIS"
Expand Down Expand Up @@ -57,12 +57,12 @@ Show this message and exit.

.PP
\fBTo check the translation status for available packages in any pre-defined Linux distribution release on transtats server.\fP
transtats release fedora-31
transtats release fedora-33

.PP
\fBTo check the translation status for available packages in any pre-defined Linux distribution release on transtats server.\fP
\fBBut if you need to know this status categorized by individual languages then use --detail\fP
transtats release --detail fedora-31
transtats release --detail fedora-33

.PP
\fBTo know the version of this transtats client.\fP
Expand All @@ -77,8 +77,8 @@ Show this message and exit.
These job types are syncupstream, syncdownstream, stringchange.
Various job type command examples are given below
transtats job run stringchange anaconda
transtats job run syncdownstream anaconda --build-system koji --build-tag f31
transtats job run stringchange anaconda --release-slug fedora-31
transtats job run syncdownstream anaconda --build-system koji --build-tag f33
transtats job run stringchange anaconda --release-slug fedora-33

.SH "NOTES"
These commands give output in plain text format. If you need the same output
Expand Down
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

1 change: 1 addition & 0 deletions requirements.txt
5 changes: 5 additions & 0 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
click
mock
requests
six
tabulate
2 changes: 2 additions & 0 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r base.txt # includes the base.txt requirements file
flake8
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
url="http://transtats.org",
license="Apache License 2.0",
install_requires=REQUIRE,
setup_requires=["flake8"],
test_suite="tests.tscli_test_suit",
scripts=["transtats"],
data_files=[('/usr/share/man/man1', ['docs/man/transtats.1']),
Expand All @@ -39,8 +38,8 @@
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'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',
],
)
4 changes: 2 additions & 2 deletions tscli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017-2019 Red Hat, Inc.
# Copyright 2017-2020 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
Expand All @@ -21,7 +21,7 @@
from tscli.stats import commands as trans
from tscli.jobs import commands as jobs

APP_VERSION = "0.3.0"
APP_VERSION = "0.4.0"


class AppContext(object):
Expand Down

0 comments on commit 56d8a4d

Please sign in to comment.