Skip to content

Commit 56d8a4d

Browse files
authored
Merge pull request #25 from pnemade/master
sync to Master branch
2 parents 0129f06 + d6e7e80 commit 56d8a4d

File tree

8 files changed

+23
-17
lines changed

8 files changed

+23
-17
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
language: python
33
python:
44
- "2.7"
5-
- "3.4"
65
- "3.5"
76
- "3.6"
87
- "3.7"
8+
- "3.8"
99

1010
addons:
1111
apt:
@@ -14,6 +14,6 @@ addons:
1414
- python-dev
1515

1616
install:
17-
- pip install -r requirements.txt
17+
- pip install -r requirements/ci.txt
1818

1919
script: "python setup.py flake8 test"

Changlog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
0.4.0 (2020-07-09)
5+
-----------------
6+
- Dropping flake8 dependency (pnemade)
7+
48
0.3.0 (2019-08-02)
59
-----------------
610
- Add new options exist and health to package command (pnemade)

docs/man/transtats.1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" transtats - Command line interface for transtats
2-
.TH "TRANSTATS" "1" "August 2018-2019" "transtats 0.3.0" "User Commands"
2+
.TH "TRANSTATS" "1" "9th June 2020" "transtats 0.4.0" "User Commands"
33
.SH "NAME"
44
transtats \- Command line interface for transtats
55
.SH "SYNOPSIS"
@@ -57,12 +57,12 @@ Show this message and exit.
5757

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

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

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

8383
.SH "NOTES"
8484
These commands give output in plain text format. If you need the same output

requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requirements/base.txt

requirements/base.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
click
2+
mock
3+
requests
4+
six
5+
tabulate

requirements/ci.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-r base.txt # includes the base.txt requirements file
2+
flake8

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
url="http://transtats.org",
2424
license="Apache License 2.0",
2525
install_requires=REQUIRE,
26-
setup_requires=["flake8"],
2726
test_suite="tests.tscli_test_suit",
2827
scripts=["transtats"],
2928
data_files=[('/usr/share/man/man1', ['docs/man/transtats.1']),
@@ -39,8 +38,8 @@
3938
'Intended Audience :: Developers',
4039
'Programming Language :: Python',
4140
'Programming Language :: Python :: 2.7',
42-
'Programming Language :: Python :: 3.5',
43-
'Programming Language :: Python :: 3.6',
4441
'Programming Language :: Python :: 3.7',
42+
'Programming Language :: Python :: 3.8',
43+
'Programming Language :: Python :: 3.9',
4544
],
4645
)

tscli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2019 Red Hat, Inc.
1+
# Copyright 2017-2020 Red Hat, Inc.
22
# All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -21,7 +21,7 @@
2121
from tscli.stats import commands as trans
2222
from tscli.jobs import commands as jobs
2323

24-
APP_VERSION = "0.3.0"
24+
APP_VERSION = "0.4.0"
2525

2626

2727
class AppContext(object):

0 commit comments

Comments
 (0)