-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d888e3
commit e5db386
Showing
7 changed files
with
181 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
.idea/ | ||
__pycache__/ | ||
build/ | ||
dist/ | ||
vsptd.egg-info/ | ||
|
||
.pypirc | ||
MANIFEST |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## 1.4.0 | ||
|
||
* parse_trp_str() вернёт параметр str_to_parse без изменений, если он будет TrpStr | ||
* параметры trp_str и trp_str_from_db функции check_condition() могут быть теперь и TrpStr | ||
* изменён поряд аргументов функции check_condition | ||
* аргумент trp_str функции check_condition теперь необязателен | ||
* добавлена возможность получить из трипл. строки значение триплета по префиксу и имени, записанным в списке/кортеже | ||
* удалены упоминания о заявке в коде | ||
* ряд исключений выбрасывают теперь TypeError вместо ValueError | ||
* изменено описание некоторых исключений | ||
* различные небольшие изменения | ||
* обновлена документация | ||
* удалены из репозитория предыдущие версии модуля | ||
|
||
## 1.3.0 | ||
|
||
* Пересмотрена логика метода add класса TrpStr: теперь он не возвращает изменённый объект. | ||
* Обновлена документация | ||
|
||
## 1.2.0 | ||
|
||
* Исправлены ошибки, произведены различные доработки | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup | ||
from vsptd import __version__ | ||
|
||
setup( | ||
name='vsptd', | ||
description='Работа с ВСПТД', | ||
version='1.3.0', | ||
url='https://github.com/become-iron/vsptd/', | ||
long_description=open('README.rst', encoding='utf-8').read(), | ||
classifiers=['Natural Language :: Russian'], | ||
py_modules=['vsptd'], | ||
data_files=[('unittests', ['unittests/ut_vsptd.py']), | ||
('help', ['README.rst']) | ||
], | ||
name='vsptd', | ||
description='Работа с ВСПТД', | ||
version=__version__, | ||
url='https://github.com/become-iron/vsptd/', | ||
long_description=open('support_files/README.rst', encoding='utf-8').read(), | ||
classifiers=['Natural Language :: Russian'], | ||
py_modules=['vsptd'], | ||
data_files=[('unittests', ['unittests/ut_vsptd.py']), | ||
('help', ['README.md', 'CHANGES.md']) | ||
], | ||
) |
Oops, something went wrong.