mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 04:34:37 +03:00
@@ -29,6 +29,32 @@ Removed
|
|||||||
Security
|
Security
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
`v0.3.1`_ (15, March, 2019)
|
||||||
|
==========================
|
||||||
|
|
||||||
|
Added
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Qmake build test code in CI environment.(#14)
|
||||||
|
|
||||||
|
Fixed
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Connect to Qt download server through proxy with authentication.(#17)
|
||||||
|
|
||||||
|
Changed
|
||||||
|
-------
|
||||||
|
|
||||||
|
* Change QtInstaller.install() function signature not to take any parameter.
|
||||||
|
* Replace standard urllib to requests library.(#18)
|
||||||
|
* Use 7zr external command instead of 7z in Linux and mac OSX envitonment.
|
||||||
|
|
||||||
|
Removed
|
||||||
|
-------
|
||||||
|
|
||||||
|
* requirements.txt file.
|
||||||
|
|
||||||
|
|
||||||
`v0.3.0`_ (8, March, 2019)
|
`v0.3.0`_ (8, March, 2019)
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
@@ -107,7 +133,8 @@ Fixed
|
|||||||
|
|
||||||
* Fork from https://git.kaidan.im/lnj/qli-installer
|
* Fork from https://git.kaidan.im/lnj/qli-installer
|
||||||
|
|
||||||
.. _Unreleased: https://github.com/miurahr/qli-installer/compare/v0.3.0...HEAD
|
.. _Unreleased: https://github.com/miurahr/qli-installer/compare/v0.3.1...HEAD
|
||||||
|
.. _v0.3.1: https://github.com/miurahr/qli-installer/compare/v0.3.0...v0.3.1
|
||||||
.. _v0.3.0: https://github.com/miurahr/qli-installer/compare/v0.2.0...v0.3.0
|
.. _v0.3.0: https://github.com/miurahr/qli-installer/compare/v0.2.0...v0.3.0
|
||||||
.. _v0.2.0: https://github.com/miurahr/qli-installer/compare/v0.1.0...v0.2.0
|
.. _v0.2.0: https://github.com/miurahr/qli-installer/compare/v0.1.0...v0.2.0
|
||||||
.. _v0.1.0: https://github.com/miurahr/qli-installer/compare/v0.0.2...v0.1.0
|
.. _v0.1.0: https://github.com/miurahr/qli-installer/compare/v0.0.2...v0.1.0
|
||||||
|
|||||||
10
setup.py
10
setup.py
@@ -12,7 +12,7 @@ def readme():
|
|||||||
|
|
||||||
|
|
||||||
setup(name='aqtinstall',
|
setup(name='aqtinstall',
|
||||||
version='0.3.0',
|
version='0.3.1',
|
||||||
description='Another unofficial Qt installer',
|
description='Another unofficial Qt installer',
|
||||||
url='http://github.com/miurahr/aqtinstall',
|
url='http://github.com/miurahr/aqtinstall',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
@@ -21,5 +21,13 @@ setup(name='aqtinstall',
|
|||||||
author_email='miurahr@linux.com',
|
author_email='miurahr@linux.com',
|
||||||
packages=["aqt"],
|
packages=["aqt"],
|
||||||
install_requires=['requests'],
|
install_requires=['requests'],
|
||||||
|
extras_require={
|
||||||
|
'dev': [
|
||||||
|
'pytest',
|
||||||
|
'pytest-pep8',
|
||||||
|
'pytest-cov',
|
||||||
|
'flake8'
|
||||||
|
]
|
||||||
|
},
|
||||||
scripts=["aqtinst"]
|
scripts=["aqtinst"]
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user