Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Update sphinx from 1.8.4 to 2.0.0
sphinx==1.8.4 sphinx-rtd-theme==0.4.3 Django==2.1.7 -e .
sphinx==2.0.0 sphinx-rtd-theme==0.4.3 Django==2.1.7 -e .
Update Nuntius to 1.0.1 (2)
Categories:Office License:GPLv2+ Web Site:https://github.com/holylobster/nuntius-android/blob/HEAD/README.md Source Code:https://github.com/holylobster/nuntius-android Issue Tracker:https://github.com/holylobster/nuntius-android/issues Auto Name:Nuntius Summary:Push notifications to a desktop PC Description: Nuntius delivers notifications from your phone or tablet to your computer over Bluetooth. To use Nuntius you will need to install a companion tool on your computer and pair your phone via Bluetooth. See the README for additional information. . Repo Type:git Repo:https://github.com/holylobster/nuntius-android Build:1.0,1 commit=471e87d23ee4c898d5535c99923debecf54a32a5 subdir=app gradle=yes Auto Update Mode:None Update Check Mode:Tags Current Version:1.0 Current Version Code:1
Categories:Office License:GPLv2+ Web Site:https://github.com/holylobster/nuntius-android/blob/HEAD/README.md Source Code:https://github.com/holylobster/nuntius-android Issue Tracker:https://github.com/holylobster/nuntius-android/issues Auto Name:Nuntius Summary:Push notifications to a desktop PC Description: Nuntius delivers notifications from your phone or tablet to your computer over Bluetooth. To use Nuntius you will need to install a companion tool on your computer and pair your phone via Bluetooth. See the README for additional information. [https://github.com/holylobster/nuntius-android/HEAD/master/NEWS Changelog] . Repo Type:git Repo:https://github.com/holylobster/nuntius-android Build:1.0,1 commit=471e87d23ee4c898d5535c99923debecf54a32a5 subdir=app gradle=yes Build:1.0.1,2 commit=000fd01a57e5027fd0eeff4c88aaa5edeac5db06 subdir=app gradle=yes Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.0.1 Current Version Code:2
Fix the installation path of the user guide.
# # Build the documentation # file(GLOB _manpages *.[0-9].txt) add_custom_target(man COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/makeman.sh ${_manpages} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) add_custom_target(userguide COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/makeguide.sh csync.txt WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) install( FILES csync.1 DESTINATION ${MAN_INSTALL_DIR}/man1 ) install( DIRECTORY userguide DESTINATION ${DATA_INSTALL_DIR}/doc/csync )
# # Build the documentation # file(GLOB _manpages *.[0-9].txt) add_custom_target(man COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/makeman.sh ${_manpages} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) add_custom_target(userguide COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/makeguide.sh csync.txt WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) install( FILES csync.1 DESTINATION ${MAN_INSTALL_DIR}/man1 ) install( DIRECTORY userguide DESTINATION ${SHARE_INSTALL_PREFIX}/doc/csync )
Update changelog with merging of @SimonSarazin release/projecter branch.
2015-03-02 Olivier Cortès <contact@oliviercortes.com> * first official release, versioned “1.0” * refreshed `README.md` with tested installation from scratch. * updated `dataserver/*settings.py*` to reflect installation needs, with some more new comments for newcomers to (hopefully) understand better. * removed apps : deal, * deactivated apps : alambic (exact status to be cleared later) * new apps : + ucomments : REST API over django-comments (@freddylimpens) * updated apps : + scout (@glibersat) : - add a new `Place` model (from http://schema.org/Place), that contains the previously defined `PostalAddress`. + projects (@atiberghien, @glibersat) : - model changes : * `ProjectSheetSuggestedItem` becomes `ProjectSheetQuestionAnswer`, * `Project.location` is now a FK to `Place`, no more to `PostalAddress`, thus `project.location.address` gives the previous value. - resources names changes: project/sheet/template → project/sheet/template project/sheet/question → project/sheet/question project/sheet/question_answer → project/sheet/question_answer project/sheet/projectsheet → project/sheet/projectsheet * refreshed `requirements` with stable releases following, where possible.
2015-03-02 Olivier Cortès <contact@oliviercortes.com> * first official release, versioned “1.0” * refreshed `README.md` with tested installation from scratch. * updated `dataserver/*settings.py*` to reflect installation needs, with some more new comments for newcomers to (hopefully) understand better. * removed apps : deal, * deactivated apps : alambic (exact status to be cleared later) * new apps : + ucomments : REST API over django-comments (@freddylimpens) * updated apps : + scout (@glibersat) : - add a new `Place` model (from http://schema.org/Place), that contains the previously defined `PostalAddress`. + projects (@atiberghien, @glibersat) : - model changes : * `ProjectSheetSuggestedItem` becomes `ProjectSheetQuestionAnswer`, * `Project.location` is now a FK to `Place`, no more to `PostalAddress`, thus `project.location.address` gives the previous value. - API resources names changes: project → project/project project/sheet/template → project/sheet/template project/sheet/question → project/sheet/question project/sheet/question_answer → project/sheet/question_answer project/sheet/projectsheet → project/sheet/projectsheet + commons (@SimonSarazin): - models split into multiple files - new fields added to projects (this will be cleaned up in next release), - new `prestation` related models to commons method modelization. * refreshed `requirements` with stable releases following, where possible.
Add the missing 80x80 icon folder to the installed ones in the cmake file
install(DIRECTORY 16x16 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 24x24 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 32x32 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 48x48 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 64x64 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 128x128 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY scalable DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor)
install(DIRECTORY 16x16 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 24x24 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 32x32 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 48x48 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 64x64 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 80x80 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY 128x128 DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor) install(DIRECTORY scalable DESTINATION ${SHARE_INSTALL_DIR}/icons/hicolor)
Update dependency sentry-sdk to v1.4.2
# Pro-tip: Try not to put anything here. There should be no dependency in # production that isn't in development. -r base.txt Django==3.1.5 gevent==21.8.0 gunicorn==20.1.0 sentry-sdk==1.4.1 # TODO: Move to /requirements/base.txt after fixing following bug: # https://github.com/readthedocs/readthedocs-docker-images/issues/158 mysqlclient==2.0.3
# Pro-tip: Try not to put anything here. There should be no dependency in # production that isn't in development. -r base.txt Django==3.1.5 gevent==21.8.0 gunicorn==20.1.0 sentry-sdk==1.4.2 # TODO: Move to /requirements/base.txt after fixing following bug: # https://github.com/readthedocs/readthedocs-docker-images/issues/158 mysqlclient==2.0.3
Add package to do MySQL requests from Python
# Import Base Requirements -r _base.txt # Local Specific Requirements beautifulsoup4==4.6.0 flake8==3.2.1 pytest==3.0.7 codecov==2.0.9 pytest-cov==2.5.1 requests-mock==1.3.0 PyYAML==3.12
# Import Base Requirements -r _base.txt # Local Specific Requirements beautifulsoup4==4.6.0 flake8==3.2.1 pytest==3.0.7 codecov==2.0.9 pytest-cov==2.5.1 requests-mock==1.3.0 PyYAML==3.12 PyMySQL==0.7.11
Update rq from 0.11.0 to 0.12.0
redis==2.10.6 rq==0.11.0 watchdog==0.8.3
redis==2.10.6 rq==0.12.0 watchdog==0.8.3
Add six requirement from rpmbuild
ansicolors==1.0.2 pantsbuild.pants==1.0.1 pantsbuild.pants.contrib.node==1.1.0rc8 psycopg2==2.5.3 pymongo==2.8 requests==2.3.0 requests-futures==0.9.4 setuptools>=23,<24 twitter.common.collections==0.3.3
ansicolors==1.0.2 pantsbuild.pants==1.0.1 pantsbuild.pants.contrib.node==1.1.0rc8 psycopg2==2.5.3 pymongo==2.8 requests==2.3.0 requests-futures==0.9.4 setuptools>=23,<24 six==1.10.0 twitter.common.collections==0.3.3
Remove unused code not run
# Set up code generation include(${SimpleITK_SOURCE_DIR}/CMake/generate_filter_source.cmake) generate_filter_source() add_subdirectory( src ) # Add custom command that will delete java files which need to be rebuilt when changes # are made to BasicFilters if( WRAP_JAVA ) add_custom_command( TARGET SimpleITKBasicFilters POST_BUILD COMMENT "Cleaning java build..." COMMAND ${CMAKE_COMMAND} -E remove -f ${SimpleITK_BINARY_DIR}/Wrapping/org/itk/simple/*.java COMMAND ${CMAKE_COMMAND} -E remove -f ${SimpleITK_BINARY_DIR}/Wrapping/build/org/itk/simple/*.class ) endif()
# Set up code generation include(${SimpleITK_SOURCE_DIR}/CMake/generate_filter_source.cmake) generate_filter_source() add_subdirectory( src )
Update aiohttp from 3.3.0 to 3.3.2
# {# This file is special: lines are made unique, stripped and sorted before the new requirements.txt file is created #} # you will need to install these requirements with `pip install -r requirements.txt` aiohttp==3.3.0 pytest==3.6.0 pytest-aiohttp==0.3.0 pytest-cov==2.5.1 # {% if template_engine.is_jinja %} aiohttp-jinja2==1.0.0 # {% endif %} # {% if session.is_secure %} aiohttp-session[secure]==2.5.1 # {% endif %} # {% if database.is_pg_sqlalchemy %} aiopg==0.14.0 SQLAlchemy==1.2.8 # {% endif %}
# {# This file is special: lines are made unique, stripped and sorted before the new requirements.txt file is created #} # you will need to install these requirements with `pip install -r requirements.txt` aiohttp==3.3.2 pytest==3.6.0 pytest-aiohttp==0.3.0 pytest-cov==2.5.1 # {% if template_engine.is_jinja %} aiohttp-jinja2==1.0.0 # {% endif %} # {% if session.is_secure %} aiohttp-session[secure]==2.5.1 # {% endif %} # {% if database.is_pg_sqlalchemy %} aiopg==0.14.0 SQLAlchemy==1.2.8 # {% endif %}
Update mutatormath from 2.1.2 to 3.0.1
fonttools[lxml,ufo,unicode]==4.21.1 cu2qu==1.6.7 glyphsLib==5.3.2 ufo2ft[pathops]==2.20.0 MutatorMath==2.1.2 fontMath==0.6.0 defcon[lxml]==0.7.2 booleanOperations==0.9.0 ufoLib2==0.8.0 attrs==20.2.0 cffsubr==0.2.7
fonttools[lxml,ufo,unicode]==4.21.1 cu2qu==1.6.7 glyphsLib==5.3.2 ufo2ft[pathops]==2.20.0 MutatorMath==3.0.1 fontMath==0.6.0 defcon[lxml]==0.7.2 booleanOperations==0.9.0 ufoLib2==0.8.0 attrs==20.2.0 cffsubr==0.2.7
Update pytest from 3.1.1 to 3.1.2
docker==2.3.0 molecule==1.25.0 pytest==3.1.1 python-vagrant==0.5.15 testinfra==1.6.3 tox==2.7.0
docker==2.3.0 molecule==1.25.0 pytest==3.1.2 python-vagrant==0.5.15 testinfra==1.6.3 tox==2.7.0
Update Fabric dependencies (pycrypto, paramiko).
Django==1.5.3 Fabric==1.8.3 South==0.8.1 coverage==3.6 cssmin==0.1.4 django-pipeline==1.3.15 djangorestframework==2.3.12 futures==2.1.4 jsmin==2.0.3 mock==1.0.1 paramiko==1.11.0 pyScss==1.1.5 pycrypto==2.6 wsgiref==0.1.2
Django==1.5.3 Fabric==1.8.3 South==0.8.1 coverage==3.6 cssmin==0.1.4 django-pipeline==1.3.15 djangorestframework==2.3.12 ecdsa==0.11 futures==2.1.4 jsmin==2.0.3 mock==1.0.1 paramiko==1.12.3 pyScss==1.1.5 pycrypto==2.6.1 wsgiref==0.1.2
Update sqlalchemy to fix security vulnerability [Skip Ci]
appdirs==1.4.3 asn1crypto==0.24.0 BeautifulSoup==3.2.1 certifi==2018.8.13 cffi==1.11.5 cryptography==2.3.1 csvkit==0.9.0 dbf==0.94.3 enum34==1.1.6 et-xmlfile==1.0.1 hashlib==20081119 idna==2.7 ipaddress==1.0.22 jdcal==1.3 ndg-httpsclient==0.5.1 numpy==1.11.0 openpyxl==2.4.7 packaging==16.8 pandas==0.18.1 pkg-resources==0.0.0 pyasn1==0.4.4 pycparser==2.18 pycurl==7.43.0 pyOpenSSL==18.0.0 pyparsing==2.2.0 python-dateutil==2.5.3 pytz==2016.4 requests==2.20.0 six==1.10.0 SQLAlchemy==1.0.13 titlecase==0.8.1 urllib3==1.23 xlrd==1.0.0
appdirs==1.4.3 asn1crypto==0.24.0 BeautifulSoup==3.2.1 certifi==2018.8.13 cffi==1.11.5 cryptography==2.3.1 csvkit==0.9.0 dbf==0.94.3 enum34==1.1.6 et-xmlfile==1.0.1 hashlib==20081119 idna==2.7 ipaddress==1.0.22 jdcal==1.3 ndg-httpsclient==0.5.1 numpy==1.11.0 openpyxl==2.4.7 packaging==16.8 pandas==0.18.1 pkg-resources==0.0.0 pyasn1==0.4.4 pycparser==2.18 pycurl==7.43.0 pyOpenSSL==18.0.0 pyparsing==2.2.0 python-dateutil==2.5.3 pytz==2016.4 requests==2.20.0 six==1.10.0 SQLAlchemy>1.3.0 titlecase==0.8.1 urllib3==1.23 xlrd==1.0.0
Create human readable user guide
# friendly non-technical guide in progress. Jmbo Generic User Guide ======================= Initial configuration --------------------- `jmbo-generic` requires initial configuration before it is ready to serve your site. Sites ***** Your web presence typically consists of a normal web site and a mobile site. There may be many more types of sites in future and `jmbo-generic` makes it easy to configure them independently. If your main site is served on `www.mysite.com` then go to `Sites` in the admin interface and set `Domain name` and `Display name` accordingly. Then add a site entry for your mobile site and set the values to `m.mysite.com`. Preferences ----------- `jmbo-generic` strives for a high level of through the web configuration. Much of the site's behaviour is customizable through the admin interface. Registration preferences ************************ You can select which fields to display on the registration form. Some fields (eg. `username`) are always visible on the registration form and cannot be removed. You can select a subset of the displayed fields to be required. Fields which are absolutely required (eg. `username`) cannot be set to be optional. For instance, if the site users my log in using their mobile number then set `mobile_number` as a required field. Some fields may need to be unique, especially those that may be used to log in to the site. Using the mobile number example above you should set `mobile_number` to be a unique field. It is important to decide beforehand which fields must be unique since it is difficult to remove duplicates if you change this setting. Login preferences ***************** Users typically log in to a normal site with their username or email address, whereas a mobile number is a natural login field for a mobile site. Choose from `Username only`, `Email address only`, `Mobile number only` or `Username or email address`. Password reset preferences ************************** When a user loses his password he may request a password reset. Normally this is accomplished by sending an email to the user, but in the case of a mobile site it is desirable to send a text. Choose between `Email address` or `Mobile number`. Note that a password reset request does not automatically generate a new password for the user since this may lead to malicious people disabling users' accounts.
Update aioworkers from 0.13.0 to 0.14.3
crontab==0.22.5 pyyaml>=4.2b1 aioworkers==0.13.0
crontab==0.22.5 pyyaml>=4.2b1 aioworkers==0.14.3
Update python_http_client from 3.2.7 to 3.3.1
# install all base requirements -r requirements.txt python_http_client==3.2.7 invoke==1.4.1 twine==3.2.0 # Tests pytest==6.0.1 pytest-cov==2.10.0 codecov==2.1.8 python-coveralls==2.9.3 coveralls==2.1.1 mock==4.0.2 # Version update PyGithub==1.51 bumpversion==0.6.0
# install all base requirements -r requirements.txt python_http_client==3.3.1 invoke==1.4.1 twine==3.2.0 # Tests pytest==6.0.1 pytest-cov==2.10.0 codecov==2.1.8 python-coveralls==2.9.3 coveralls==2.1.1 mock==4.0.2 # Version update PyGithub==1.51 bumpversion==0.6.0
Remove Gevent and Gunicorn dependencies.
flask Flask-Assets flask-classy Flask-Failsafe progressbar2 rq SQLAlchemy sqlalchemy_utils tornado pycurl pillow phonenumbers gunicorn gevent agnostic[postgres]
flask Flask-Assets flask-classy Flask-Failsafe progressbar2 rq SQLAlchemy sqlalchemy_utils tornado pycurl pillow phonenumbers agnostic[postgres]
Put user stylesheet / init script docs above themes.
intro.md features.md configuring.md keymaps.md themes.md user-stylesheet.md user-init-script.md packages/intro.md packages/installing.md packages/markdown-preview.md packages/wrap-guide.md
intro.md features.md configuring.md keymaps.md user-stylesheet.md user-init-script.md themes.md packages/intro.md packages/installing.md packages/markdown-preview.md packages/wrap-guide.md
Fix build to name the lib properly
include_directories(${LIBGGPK_SOURCE_DIR}/include/ggpk) add_library(libggpk Node.cpp Archive.cpp) # libggpk must link with Qt4 target_link_libraries(libggpk ${QT_LIBRARIES})
include_directories(${LIBGGPK_SOURCE_DIR}/include/ggpk) add_library(libggpk Node.cpp Archive.cpp) set_target_properties(libggpk PROPERTIES OUTPUT_NAME ggpk) # libggpk must link with Qt4 target_link_libraries(libggpk ${QT_LIBRARIES})
Update Nextcloud Bookmarks to 1.5 (6)
Categories:Multimedia,Internet License:MIT Web Site:https://github.com/theScrabi/OCBookmarks Source Code:https://github.com/theScrabi/OCBookmarks Issue Tracker:https://github.com/theScrabi/OCBookmarks/issues Changelog:https://github.com/theScrabi/OCBookmarks/releases Auto Name:Nextcloud Bookmarks Summary:A front end for the Nextcloud Bookmark app Description: An Android front end for the Nextcloud/Owncloud Bookmark App based on the new REST API that was introduced by Bookmarks version 0.10.1 With this app you can add/edit/delete and view bookmarks, and sync them with your Nextcloud. However you need to have the Bookmarks app in minimal required version 0.10.1 installed and enabled on you Nextcloud. If you need more information about the Nextcloud Bookmark app, you can follow this link: [https://apps.nextcloud.com/apps/bookmarks] . Repo Type:git Repo:https://github.com/theScrabi/OCBookmarks Build:1.0,1 commit=v1.0 subdir=app gradle=yes Build:1.1,2 commit=v1.1 subdir=app gradle=yes Build:1.2,3 commit=v1.2 subdir=app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.2 Current Version Code:3
Categories:Multimedia,Internet License:MIT Web Site:https://github.com/theScrabi/OCBookmarks Source Code:https://github.com/theScrabi/OCBookmarks Issue Tracker:https://github.com/theScrabi/OCBookmarks/issues Changelog:https://github.com/theScrabi/OCBookmarks/releases Auto Name:Nextcloud Bookmarks Summary:A front end for the Nextcloud Bookmark app Description: An Android front end for the Nextcloud/Owncloud Bookmark App based on the new REST API that was introduced by Bookmarks version 0.10.1 With this app you can add/edit/delete and view bookmarks, and sync them with your Nextcloud. However you need to have the Bookmarks app in minimal required version 0.10.1 installed and enabled on you Nextcloud. If you need more information about the Nextcloud Bookmark app, you can follow this link: [https://apps.nextcloud.com/apps/bookmarks] . Repo Type:git Repo:https://github.com/theScrabi/OCBookmarks Build:1.0,1 commit=v1.0 subdir=app gradle=yes Build:1.1,2 commit=v1.1 subdir=app gradle=yes Build:1.2,3 commit=v1.2 subdir=app gradle=yes Build:1.5,6 commit=v1.5 subdir=app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.5 Current Version Code:6
Add overview of folder contents.
recipes-binary - Binary only firmware recipes. recipes-bsp - Anything with links to the RaspberryPi hardware configuration information. recipes-core - Extensions to existing upstream core recipes. recipes-devices - Device drivers/Init scripts. recipes-graphics - XOrg Config and such. recipes-kernel - The RaspberryPi kernel recipes and anything with strong kernel dependencies.
Bump pytest from 6.2.1 to 6.2.2
black==20.8b1 doc8==0.8.1 coveralls==3.0.0 flake8==3.8.4 flake8-commas==2.0.0 flake8-comprehensions==3.3.1 flake8-docstrings==1.5.0 flake8-isort==4.0.0 flake8-mutable==1.2.0 freezegun==1.1.0 isort==5.7.0 mypy==0.790 pydocstyle==5.1.1 pytest==6.2.1 pytest-cov==2.11.1 rope==0.18.0 setuptools==52.0.0 sphinx==3.4.3 sphinx-autodoc-typehints==1.11.1 twine==3.3.0 wheel==0.36.2
black==20.8b1 doc8==0.8.1 coveralls==3.0.0 flake8==3.8.4 flake8-commas==2.0.0 flake8-comprehensions==3.3.1 flake8-docstrings==1.5.0 flake8-isort==4.0.0 flake8-mutable==1.2.0 freezegun==1.1.0 isort==5.7.0 mypy==0.790 pydocstyle==5.1.1 pytest==6.2.2 pytest-cov==2.11.1 rope==0.18.0 setuptools==52.0.0 sphinx==3.4.3 sphinx-autodoc-typehints==1.11.1 twine==3.3.0 wheel==0.36.2
Update py from 1.4.34 to 1.5.2
-r requirements.txt flake8==3.0.4 mccabe==0.6.1 py==1.4.34 pycodestyle==2.0.0 pyflakes==1.3.0 pytest==3.0.3 pytest-cov==2.5.1
-r requirements.txt flake8==3.0.4 mccabe==0.6.1 py==1.5.2 pycodestyle==2.0.0 pyflakes==1.3.0 pytest==3.0.3 pytest-cov==2.5.1
Mark page shells and ranking report as complete
[x] basic layout (layout.html, navbar, footer, bootstrap/ fontawesome) [/] page shells (main, about, teams, awards, playoffs, pit display, playoff display, 404) [ ] login system [ ] event settings page (name, passwords) [/] team list page [x] team management via form [x] team CSV import [x] team list report [x] basic score management per team (with team and round selection, but using simplified score form) [ ] full 2015 score form [/] rankings report [ ] qualification rankings display [x] judge evaluation management [ ] award selection [ ] award winner selection (manual and automatic) [ ] award winner report [ ] playoff management [ ] playoff display
[x] basic layout (layout.html, navbar, footer, bootstrap/ fontawesome) [x] page shells (main, about, teams, awards, playoffs, pit display, playoff display) [ ] login system [ ] event settings page (name, passwords) [/] team list page [x] team management via form [x] team CSV import [x] team list report [x] basic score management per team (with team and round selection, but using simplified score form) [ ] full 2015 score form [x] rankings report [ ] qualification rankings display [x] judge evaluation management [ ] award selection [ ] award winner selection (manual and automatic) [ ] award winner report [ ] playoff management [ ] playoff display
Update tox from 3.21.3 to 3.21.4
ansible-lint==4.3.7 docker==4.4.1 flake8==3.8.4 molecule==3.0.8 pytest==6.2.2 testinfra==6.0.0 tox==3.21.3
ansible-lint==4.3.7 docker==4.4.1 flake8==3.8.4 molecule==3.0.8 pytest==6.2.2 testinfra==6.0.0 tox==3.21.4
Bump black from 21.4b1 to 21.4b2
# # This file is autogenerated by pip-compile # To update, run: # # pip-compile requirements/format.in # appdirs==1.4.4 # via black black==21.4b1 # via -r requirements/format.in click==7.1.2 # via black isort==5.8.0 # via -r requirements/format.in mypy-extensions==0.4.3 # via black pathspec==0.8.1 # via black regex==2021.4.4 # via black toml==0.10.2 # via black
# # This file is autogenerated by pip-compile # To update, run: # # pip-compile requirements/format.in # appdirs==1.4.4 # via black black==21.4b2 # via -r requirements/format.in click==7.1.2 # via black isort==5.8.0 # via -r requirements/format.in mypy-extensions==0.4.3 # via black pathspec==0.8.1 # via black regex==2021.4.4 # via black toml==0.10.2 # via black
Update pep8 from 1.7.0 to 1.7.1
# Runtime requirements --requirement requirements.txt # Postgresql database access psycopg2==2.7.3.2 # Documentation Sphinx==1.6.5 # Testing pytest==3.2.3 pytest-cov==2.5.1 coveralls==1.2.0 # Linting flake8==3.5.0 mccabe==0.6.1 pep8==1.7.0 pyflakes==1.6.0
# Runtime requirements --requirement requirements.txt # Postgresql database access psycopg2==2.7.3.2 # Documentation Sphinx==1.6.5 # Testing pytest==3.2.3 pytest-cov==2.5.1 coveralls==1.2.0 # Linting flake8==3.5.0 mccabe==0.6.1 pep8==1.7.1 pyflakes==1.6.0
Update pexpect from 4.3.0 to 4.3.1
sphinx-rtd-theme==0.2.4 backports-abc==0.5 click==6.7 configparser==3.5.0 flake8==3.5.0 future==0.16.0 Keras>=2.0.0 matplotlib==2.1.0 mock==2.0.0 numpy==1.13.3 pandas==0.21.0 pandocfilters==1.4.2 pathlib2==2.3.0 pbr==3.1.1 pexpect==4.3.0 Pillow==4.3.0 protobuf==3.5.0.post1 Pygments==2.2.0 python-dateutil==2.6.1 PyYAML==3.12 pyzmq==16.0.3 scipy==1.0.0 seaborn==0.8.1 Sphinx==1.6.5 stevedore==1.28.0 tornado==4.5.2 h5py==2.7.1 recommonmark==0.4.0 pytest-flake8==0.9 tensorflow # pyup: ignore
sphinx-rtd-theme==0.2.4 backports-abc==0.5 click==6.7 configparser==3.5.0 flake8==3.5.0 future==0.16.0 Keras>=2.0.0 matplotlib==2.1.0 mock==2.0.0 numpy==1.13.3 pandas==0.21.0 pandocfilters==1.4.2 pathlib2==2.3.0 pbr==3.1.1 pexpect==4.3.1 Pillow==4.3.0 protobuf==3.5.0.post1 Pygments==2.2.0 python-dateutil==2.6.1 PyYAML==3.12 pyzmq==16.0.3 scipy==1.0.0 seaborn==0.8.1 Sphinx==1.6.5 stevedore==1.28.0 tornado==4.5.2 h5py==2.7.1 recommonmark==0.4.0 pytest-flake8==0.9 tensorflow # pyup: ignore
Update pandas from 0.20.2 to 0.20.3
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.3.0 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.3 cryptography==1.9 PyYAML==3.12 pytest==3.1.3 pytest-runner==2.11.1 sphinxcontrib-napoleon==0.6.1 numpy==1.13.1 pandas==0.20.2 matplotlib==2.0.2 jupyter==1.0.0 ipywidgets==7.0.0a8 opencv-contrib-python==3.2.0.7 opencv-python==3.2.0.7 pymodbus==1.3.1 pyserial==3.3
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.3.0 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.3 cryptography==1.9 PyYAML==3.12 pytest==3.1.3 pytest-runner==2.11.1 sphinxcontrib-napoleon==0.6.1 numpy==1.13.1 pandas==0.20.3 matplotlib==2.0.2 jupyter==1.0.0 ipywidgets==7.0.0a8 opencv-contrib-python==3.2.0.7 opencv-python==3.2.0.7 pymodbus==1.3.1 pyserial==3.3
Update coverage from 5.0.3 to 5.0.4
pip==19.3.1 bumpversion==0.5.3 wheel==0.33.6 watchdog==0.9.0 flake8==3.7.9 tox==3.14.5 coverage==5.0.3 Sphinx==2.3.1 cryptography==2.8 PyYAML==5.3 pytest==5.3.5 pytest-runner==5.2 vcrpy==2.1.1 twine==3.1.1
pip==19.3.1 bumpversion==0.5.3 wheel==0.33.6 watchdog==0.9.0 flake8==3.7.9 tox==3.14.5 coverage==5.0.4 Sphinx==2.3.1 cryptography==2.8 PyYAML==5.3 pytest==5.3.5 pytest-runner==5.2 vcrpy==2.1.1 twine==3.1.1
Update tox from 2.7.0 to 2.8.1
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.3.0 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.3 cryptography==1.9 PyYAML==3.12 nose==1.3.7
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.3.0 tox==2.8.1 coverage==4.4.1 Sphinx==1.6.3 cryptography==1.9 PyYAML==3.12 nose==1.3.7
Remove yamllint extra from ansible-lint
-r staging.txt ansible==6.4.0 ansible-lint[yamllint]==6.7.0 coverage==6.4.4 factory_boy==3.2.1 flake8==5.0.4 ipython==8.5.0 rstcheck==5.0.0 sphinx==5.2.2
-r staging.txt ansible==6.4.0 ansible-lint==6.7.0 coverage==6.4.4 factory_boy==3.2.1 flake8==5.0.4 ipython==8.5.0 rstcheck==5.0.0 sphinx==5.2.2
Update check-manifest from 0.41 to 0.42
-r requirements.txt check-manifest==0.41 pyroma==2.6 pytest==5.4.1 pytest-mock==3.1.0 tox==3.15.0 flake8==3.7.9 twine==3.1.1 coverage==5.1 pytest-cov==2.8.1 Sphinx==3.0.3 sphinx-autobuild==0.7.1 sphinx-autodoc-typehints==1.10.3 redis==3.5.0 Cython==0.29.17 happybase==1.2.0
-r requirements.txt check-manifest==0.42 pyroma==2.6 pytest==5.4.1 pytest-mock==3.1.0 tox==3.15.0 flake8==3.7.9 twine==3.1.1 coverage==5.1 pytest-cov==2.8.1 Sphinx==3.0.3 sphinx-autobuild==0.7.1 sphinx-autodoc-typehints==1.10.3 redis==3.5.0 Cython==0.29.17 happybase==1.2.0
Drop NumPy version requirement from 1.8.0 to 1.4.1
setuptools Numpy>=1.8.0 Cython>=0.19 descartes==1.0.1 packaging pytest
setuptools Numpy>=1.4.1 Cython>=0.19 descartes==1.0.1 packaging pytest
Update dependency django-test-plus to v1.2.1
# Local development dependencies go here -r base.txt Sphinx==1.8.5 # django-debug-toolbar that works with Django 1.5+ django-debug-toolbar==1.11 django-extensions==2.1.9 django-autofixture==0.12.1 graphviz==0.9 factory-boy==2.11.1 django-coverage-plugin==1.6.0 django-test-plus==1.1.1 vcrpy==2.0.1
# Local development dependencies go here -r base.txt Sphinx==1.8.5 # django-debug-toolbar that works with Django 1.5+ django-debug-toolbar==1.11 django-extensions==2.1.9 django-autofixture==0.12.1 graphviz==0.9 factory-boy==2.11.1 django-coverage-plugin==1.6.0 django-test-plus==1.2.1 vcrpy==2.0.1
Update numpy from 1.18.3 to 1.18.4
# required cython==0.29.19 numpy==1.18.3 dask[array]==2.15.0 # optional scipy==1.4.1 matplotlib==3.2.1 seaborn==0.10.1 pandas==1.0.3 scikit-learn==0.22.2.post1 h5py==2.10.0 numexpr==2.7.1 bcolz==1.2.1 zarr==2.3.2 hmmlearn==0.2.3 # install problems on windows, skip for now # https://github.com/jmschrei/pomegranate/issues/333#issuecomment-449151227 #pomegranate==0.10.0
# required cython==0.29.19 numpy==1.18.4 dask[array]==2.15.0 # optional scipy==1.4.1 matplotlib==3.2.1 seaborn==0.10.1 pandas==1.0.3 scikit-learn==0.22.2.post1 h5py==2.10.0 numexpr==2.7.1 bcolz==1.2.1 zarr==2.3.2 hmmlearn==0.2.3 # install problems on windows, skip for now # https://github.com/jmschrei/pomegranate/issues/333#issuecomment-449151227 #pomegranate==0.10.0
Add PSTVZ to excluded list
# This file is used to indicate what symbols should not be included # in the coarse file generation process. By default, this file contains # known test symbols #https://www.nasdaqtrader.com/TraderNews.aspx?id=ETU2013-6 ZJZZT ZVZZT ZWZZT ZXYZ.A ZXZZT CBO CBX IBO IGZ ZBZX ZTEST #http://www.nasdaq.com/symbol/zvv ZVV ZZZZQ #http://www.4-traders.com/NYSE-TEST-SYMBOL-6396573/ ZZZ # Listed as an equity but trades as a warrant -- causes error when selected in algorithm to trade on IB. JFKKW TBLTU TBLTW # Traded as an equity tracking the VMware portion of Dell's business while Dell was private. #Dell resumed public trading 12-28-2018 and in so doing bought out the shares of DVMT that were remaining DVMT
# This file is used to indicate what symbols should not be included # in the coarse file generation process. By default, this file contains # known test symbols #https://www.nasdaqtrader.com/TraderNews.aspx?id=ETU2013-6 ZJZZT ZVZZT ZWZZT ZXYZ.A ZXZZT CBO CBX IBO IGZ ZBZX ZTEST #http://www.nasdaq.com/symbol/zvv ZVV ZZZZQ #http://www.4-traders.com/NYSE-TEST-SYMBOL-6396573/ ZZZ # Listed as an equity but trades as a warrant -- causes error when selected in algorithm to trade on IB. JFKKW TBLTU TBLTW PSTVZ # Traded as an equity tracking the VMware portion of Dell's business while Dell was private. # Dell resumed public trading 12-28-2018 and in so doing bought out the shares of DVMT that were remaining DVMT
Remove incorrect line trying to build intel-mpx; that's in the intel subdir.
if (CMAKE_SYSTEM_NAME MATCHES "Darwin") add_subdirectory(darwin-debug) add_subdirectory(debugserver) endif() add_subdirectory(argdumper) add_subdirectory(driver) add_subdirectory(lldb-mi) if (LLDB_CAN_USE_LLDB_SERVER) add_subdirectory(lldb-server) endif() add_subdirectory(intel-mpx) add_subdirectory(repl/swift) add_subdirectory(intel-features)
if (CMAKE_SYSTEM_NAME MATCHES "Darwin") add_subdirectory(darwin-debug) add_subdirectory(debugserver) endif() add_subdirectory(argdumper) add_subdirectory(driver) add_subdirectory(lldb-mi) if (LLDB_CAN_USE_LLDB_SERVER) add_subdirectory(lldb-server) endif() add_subdirectory(repl/swift) add_subdirectory(intel-features)
Update CrocodileNote to 1.6 (16)
Categories:Office License:GPLv3 Web Site:https://code.google.com/p/crocodilenote Source Code:https://code.google.com/p/crocodilenote/source Issue Tracker:https://code.google.com/p/crocodilenote/issues Auto Name:CrocodileNote Summary:Take notes and encrypt them Description: Take simple text notes. You can put them into folders to create your own quick, easy and robust file structure. There are two modes supported, plain and encryption. In encryption mode all data is encrypted using password-based encryption (PKCS#5) with AES-256. These are common industry standards and used by, e.g., the famous TrueCrypt disk encryption. In plain mode you can view and copy folders directly via PC from your internal SD card. Use encryption if you want to protect your data and your privacy! Further features: * Export to ZIP for backup * Linkify notes in case you store e-mail addresses, Internet addresses/URLs or phone numbers * Auto-logout switch for 30 minutes (encryption mode only) . Repo Type:git-svn Repo:https://crocodilenote.googlecode.com/svn/trunk/ Build:1.5,15 commit=r3 target=android-19 Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.6 Current Version Code:16
Categories:Office License:GPLv3 Web Site:https://code.google.com/p/crocodilenote Source Code:https://code.google.com/p/crocodilenote/source Issue Tracker:https://code.google.com/p/crocodilenote/issues Auto Name:CrocodileNote Summary:Take notes and encrypt them Description: Take simple text notes. You can put them into folders to create your own quick, easy and robust file structure. There are two modes supported, plain and encryption. In encryption mode all data is encrypted using password-based encryption (PKCS#5) with AES-256. These are common industry standards and used by, e.g., the famous TrueCrypt disk encryption. In plain mode you can view and copy folders directly via PC from your internal SD card. Use encryption if you want to protect your data and your privacy! Further features: * Export to ZIP for backup * Linkify notes in case you store e-mail addresses, Internet addresses/URLs or phone numbers * Auto-logout switch for 30 minutes (encryption mode only) . Repo Type:git-svn Repo:https://crocodilenote.googlecode.com/svn/trunk/ Build:1.5,15 commit=r3 target=android-19 Build:1.6,16 commit=r4 target=android-21 Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.6 Current Version Code:16
Remove okhttp related proguard rules
# Proguard rules specific to the OkHttp extension. # Options specified by https://github.com/square/okhttp/blob/master/README.md -dontwarn okhttp3.** -dontwarn okio.** -dontwarn javax.annotation.** -dontwarn org.conscrypt.** -keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
# Proguard rules specific to the OkHttp extension. # Options specified by https://github.com/square/okhttp/blob/master/README.md -dontwarn okio.** -dontwarn javax.annotation.** -dontwarn org.conscrypt.**
Update CV of RateBeer for Android to 1.6.1 (54)
Disabled:non-free, little chance we'll ever build it Categories:Internet License:GPLv3+ Web Site:http://www.ratebeer.com Source Code:https://code.google.com/p/ratebeerforandroid/source Issue Tracker:https://code.google.com/p/ratebeerforandroid/issues Auto Name:RateBeer for Android Summary:RateBeer.com client Description: Companion client for the [http://www.ratebeer.com RateBeer]-Website. Features: * Search and explore (top) beers without the need for an account * On- and off-line rating of beers * Offer place and event suggestions based on a user's geographical location . Repo Type:hg Repo:https://code.google.com/p/ratebeerforandroid Build:1.5.8,52 disable=filled with jars, uses google play services lib commit=none subdir=RateBeerForAndroid Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.5.8 Current Version Code:52
Disabled:non-free, little chance we'll ever build it Categories:Internet License:GPLv3+ Web Site:http://www.ratebeer.com Source Code:https://code.google.com/p/ratebeerforandroid/source Issue Tracker:https://code.google.com/p/ratebeerforandroid/issues Auto Name:RateBeer for Android Summary:RateBeer.com client Description: Companion client for the [http://www.ratebeer.com RateBeer]-Website. Features: * Search and explore (top) beers without the need for an account * On- and off-line rating of beers * Offer place and event suggestions based on a user's geographical location . Repo Type:hg Repo:https://code.google.com/p/ratebeerforandroid Build:1.5.8,52 disable=filled with jars, uses google play services lib commit=none subdir=RateBeerForAndroid Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.6.1 Current Version Code:54
Update flake8 from 3.5.0 to 3.7.8
-e .[all] bumpversion==0.5.3 cov-core==1.15.0 flake8==3.5.0 isort==4.3.4 mock==2.0.0 moto==1.3.6 py==1.6.0 pytest-cov==2.6.0 pytest==3.8.2 wheel==0.32.1
-e .[all] bumpversion==0.5.3 cov-core==1.15.0 flake8==3.7.8 isort==4.3.4 mock==2.0.0 moto==1.3.6 py==1.6.0 pytest-cov==2.6.0 pytest==3.8.2 wheel==0.32.1
Update pytest from 3.6.1 to 3.6.2
coverage==4.5.1 jedi==0.12.0 pylint==1.9.2 pytest==3.6.1 pytest-cov==2.5.1 sphinx==1.7.5 sphinx-rtd-theme==0.4.0 tox==3.0.0 rope==0.10.7 mypy==0.610; python_version >= '3.5' pytest-asyncio==0.8.0; python_version >= '3.5'
coverage==4.5.1 jedi==0.12.0 pylint==1.9.2 pytest==3.6.2 pytest-cov==2.5.1 sphinx==1.7.5 sphinx-rtd-theme==0.4.0 tox==3.0.0 rope==0.10.7 mypy==0.610; python_version >= '3.5' pytest-asyncio==0.8.0; python_version >= '3.5'
Update pytest from 3.7.3 to 3.8.0
attrs==18.1.0 # Modern attrs is required for pytest autoflake==1.2 check-manifest==0.37 codecov==2.0.15 # Upload coverage data dodgy==0.1.9 # Look for uploaded secrets flake8==3.5.0 # Lint flake8-commas==2.0.0 # Require silicon valley commas flake8-quotes==1.0.0 # Require single quotes freezegun==0.3.10 # Freeze time in tests hypothesis==3.70.0 # Generate test cases isort==4.3.4 # Lint imports mypy==0.620 # Type checking pip_check_reqs==2.0.3 pydocstyle==2.1.1 # Lint docstrings pyenchant==2.0.0 # Bindings for a spellchecking sytem pylint==2.1.1 # Lint pyroma==2.4 # Packaging best practices checker pytest-cov==2.5.1 # Measure code coverage pytest-envfiles==0.1.0 # Use files for environment variables for tests pytest==3.7.3 # Test runners timeout-decorator==0.4.0 # Decorate functions to time out. vulture==0.29 yapf==0.23.0 # Automatic formatting for Python PyYAML==3.13
attrs==18.1.0 # Modern attrs is required for pytest autoflake==1.2 check-manifest==0.37 codecov==2.0.15 # Upload coverage data dodgy==0.1.9 # Look for uploaded secrets flake8==3.5.0 # Lint flake8-commas==2.0.0 # Require silicon valley commas flake8-quotes==1.0.0 # Require single quotes freezegun==0.3.10 # Freeze time in tests hypothesis==3.70.0 # Generate test cases isort==4.3.4 # Lint imports mypy==0.620 # Type checking pip_check_reqs==2.0.3 pydocstyle==2.1.1 # Lint docstrings pyenchant==2.0.0 # Bindings for a spellchecking sytem pylint==2.1.1 # Lint pyroma==2.4 # Packaging best practices checker pytest-cov==2.5.1 # Measure code coverage pytest-envfiles==0.1.0 # Use files for environment variables for tests pytest==3.8.0 # Test runners timeout-decorator==0.4.0 # Decorate functions to time out. vulture==0.29 yapf==0.23.0 # Automatic formatting for Python PyYAML==3.13
Update sphinx from 2.0.0 to 2.0.1
docutils==0.14 git+https://github.com/tony/releases.git@future-releases-uri-config#egg=releases sphinx==2.0.0 alagitpull==0.0.22 sphinxcontrib-napoleon==0.7
docutils==0.14 git+https://github.com/tony/releases.git@future-releases-uri-config#egg=releases sphinx==2.0.1 alagitpull==0.0.22 sphinxcontrib-napoleon==0.7
Disable broken tests on Windows
add_subdirectory(cgen_test) add_subdirectory(monster_test) add_subdirectory(monster_test_solo) add_subdirectory(monster_test_prefix) add_subdirectory(emit_test) add_subdirectory(flatc_compat) if (FLATCC_REFLECTION) add_subdirectory(reflection_test) endif() add_subdirectory(load_test) add_subdirectory(json_test)
add_subdirectory(cgen_test) add_subdirectory(monster_test) add_subdirectory(monster_test_solo) add_subdirectory(monster_test_prefix) add_subdirectory(flatc_compat) if (FLATCC_REFLECTION) add_subdirectory(reflection_test) endif() add_subdirectory(load_test) if (NOT MSVC) # currently broken on Win32 add_subdirectory(emit_test) add_subdirectory(json_test) endif()
Update pip from 8.1.2 to 19.3.1
pip==8.1.2 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.6.0 tox==2.3.1 coverage==4.1 Sphinx==1.4.8 cryptography==1.7 PyYAML==5.1
pip==19.3.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.6.0 tox==2.3.1 coverage==4.1 Sphinx==1.4.8 cryptography==1.7 PyYAML==5.1
Update links in readme file
ITK: The Insight Toolkit for Segmentation and Registration Links ----- * Homepage: http://www.itk.org * Download: http://www.itk.org/ITK/resources/software.html * Mailing List: http://www.itk.org/mailman/listinfo/insight-users * Book: http://www.itk.org/ITK/help/book.html * Help: http://www.itk.org/ITK/help/help.html About ----- ITK is an open-source, cross-platform C++ toolkit for segmentation and registration. Segmentation is the process of identifying and classifying data found in a digitally sampled representation. Typically the sampled representation is an image acquired from such medical instrumentation as CT or MRI scanners. Registration is the task of aligning or developing correspondences between data. For example, in the medical environment, a CT scan may be aligned with a MRI scan in order to combine the information contained in both. The toolkit may be built from source using CMake (http://www.cmake.org). Copyright --------- The Insight Software Consortium (http://www.insightsoftwareconsortium.org) holds the copyright of this software. This is a non-profit entity that promotes the use of ITK for educational and research purposes. ITK is distributed under a license that enables use for both non-commercial and commercial applications. See LICENSE and NOTICE files for details.
ITK: The Insight Toolkit for Segmentation and Registration Links ----- * Homepage: http://www.itk.org * Download: http://www.itk.org/ITK/resources/software.html * Mailing List: http://www.itk.org/ITK/help/mailing.html * Book: http://www.itk.org/ITK/help/book.html * Help: http://www.itk.org/ITK/help/help.html * Examples: http://itk.org/ITKExamples/ * Bugtracker: https://issues.itk.org/ * Submit a patch: http://www.itk.org/Wiki/ITK/Git/Develop About ----- ITK is an open-source, cross-platform C++ toolkit for segmentation and registration. Segmentation is the process of identifying and classifying data found in a digitally sampled representation. Typically the sampled representation is an image acquired from such medical instrumentation as CT or MRI scanners. Registration is the task of aligning or developing correspondences between data. For example, in the medical environment, a CT scan may be aligned with a MRI scan in order to combine the information contained in both. The toolkit may be built from source using CMake (http://www.cmake.org). Copyright --------- The Insight Software Consortium (http://www.insightsoftwareconsortium.org) holds the copyright of this software. This is a non-profit entity that promotes the use of ITK for educational and research purposes. ITK is distributed under a license that enables use for both non-commercial and commercial applications. See LICENSE and NOTICE files for details.
Update pytest from 3.1.1 to 3.1.2
alabaster==0.7.10 amqp==2.1.4 appdirs==1.4.3 babel==2.4.0 beautifulsoup4==4.6.0 billiard==3.5.0.2 celery==4.0.2 click==6.7 coverage==4.4.1 django-webtest==1.9.2 docutils==0.13.1 first==2.0.1 graphviz==0.7.1 imagesize==0.7.1 Jinja2==2.9.6 kombu==4.0.2 MarkupSafe==1.0 packaging==16.8 pip-tools==1.9.0 pluggy==0.4.0 py==1.4.34 pyenchant==1.6.8 Pygments==2.2.0 pyparsing==2.2.0 pytest-django==3.1.2 pytest==3.1.1 pytz==2017.2 requests==2.17.3 six==1.10.0 snowballstemmer==1.2.1 sphinx==1.6.2 sphinxcontrib-spelling==2.3.0 tox==2.7.0 vine==1.1.3 virtualenv==15.1.0 waitress==1.0.2 WebOb==1.7.2 webtest==2.0.27 # The following packages are considered to be unsafe in a requirements file: # setuptools
alabaster==0.7.10 amqp==2.1.4 appdirs==1.4.3 babel==2.4.0 beautifulsoup4==4.6.0 billiard==3.5.0.2 celery==4.0.2 click==6.7 coverage==4.4.1 django-webtest==1.9.2 docutils==0.13.1 first==2.0.1 graphviz==0.7.1 imagesize==0.7.1 Jinja2==2.9.6 kombu==4.0.2 MarkupSafe==1.0 packaging==16.8 pip-tools==1.9.0 pluggy==0.4.0 py==1.4.34 pyenchant==1.6.8 Pygments==2.2.0 pyparsing==2.2.0 pytest-django==3.1.2 pytest==3.1.2 pytz==2017.2 requests==2.17.3 six==1.10.0 snowballstemmer==1.2.1 sphinx==1.6.2 sphinxcontrib-spelling==2.3.0 tox==2.7.0 vine==1.1.3 virtualenv==15.1.0 waitress==1.0.2 WebOb==1.7.2 webtest==2.0.27 # The following packages are considered to be unsafe in a requirements file: # setuptools
Update celery from 4.0.2 to 4.1.0
alabaster==0.7.10 amqp==2.2.1 appdirs==1.4.3 babel==2.4.0 beautifulsoup4==4.6.0 billiard==3.5.0.3 celery==4.0.2 click==6.7 coverage==4.4.1 django-webtest==1.9.2 docutils==0.13.1 first==2.0.1 graphviz==0.8 imagesize==0.7.1 Jinja2==2.9.6 kombu==4.1.0 MarkupSafe==1.0 packaging==16.8 pip-tools==1.9.0 pluggy==0.4.0 py==1.4.34 pyenchant==1.6.10 Pygments==2.2.0 pyparsing==2.2.0 pytest-django==3.1.2 pytest==3.1.3 pytz==2017.2 requests==2.18.1 six==1.10.0 snowballstemmer==1.2.1 sphinx==1.6.3 sphinxcontrib-spelling==2.3.0 tox==2.7.0 vine==1.1.4 virtualenv==15.1.0 waitress==1.0.2 WebOb==1.7.3 webtest==2.0.27 # The following packages are considered to be unsafe in a requirements file: # setuptools
alabaster==0.7.10 amqp==2.2.1 appdirs==1.4.3 babel==2.4.0 beautifulsoup4==4.6.0 billiard==3.5.0.3 celery==4.1.0 click==6.7 coverage==4.4.1 django-webtest==1.9.2 docutils==0.13.1 first==2.0.1 graphviz==0.8 imagesize==0.7.1 Jinja2==2.9.6 kombu==4.1.0 MarkupSafe==1.0 packaging==16.8 pip-tools==1.9.0 pluggy==0.4.0 py==1.4.34 pyenchant==1.6.10 Pygments==2.2.0 pyparsing==2.2.0 pytest-django==3.1.2 pytest==3.1.3 pytz==2017.2 requests==2.18.1 six==1.10.0 snowballstemmer==1.2.1 sphinx==1.6.3 sphinxcontrib-spelling==2.3.0 tox==2.7.0 vine==1.1.4 virtualenv==15.1.0 waitress==1.0.2 WebOb==1.7.3 webtest==2.0.27 # The following packages are considered to be unsafe in a requirements file: # setuptools
Add a workaround for stupid CMake behaviour
project(msgpuck) cmake_minimum_required(VERSION 2.6) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -pg -Wall -Wextra") if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE RelWithDebugInfo CACHE STRING "Build type, options are: Debug Release." FORCE) endif() add_subdirectory(test) add_library(${PROJECT_NAME} SHARED msgpuck.c) set_target_properties(${PROJECT_NAME} PROPERTIES VERSION 0.1 SOVERSION 0) if (NOT CMAKE_INSTALL_LIBDIR) set(CMAKE_INSTALL_LIBDIR lib) endif() install(FILES msgpuck.h DESTINATION include) install(TARGETS ${PROJECT_NAME} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT library) add_custom_target(doc COMMAND doxygen ${PROJECT_SOURCE_DIR}/Doxyfile)
project(msgpuck) cmake_minimum_required(VERSION 2.6) if(POLICY CMP0037) cmake_policy(SET CMP0037 OLD) # don't blame custom target names endif(POLICY CMP0037) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -pg -Wall -Wextra") if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE RelWithDebugInfo CACHE STRING "Build type, options are: Debug Release." FORCE) endif() add_subdirectory(test) add_library(${PROJECT_NAME} SHARED msgpuck.c) set_target_properties(${PROJECT_NAME} PROPERTIES VERSION 0.1 SOVERSION 0) if (NOT CMAKE_INSTALL_LIBDIR) set(CMAKE_INSTALL_LIBDIR lib) endif() install(FILES msgpuck.h DESTINATION include) install(TARGETS ${PROJECT_NAME} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT library) add_custom_target(doc COMMAND doxygen ${PROJECT_SOURCE_DIR}/Doxyfile)
Update cryptography from 2.1.4 to 2.2
pip==9.0.2 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.5.0 tox==2.9.1 coverage==4.5.1 Sphinx==1.7.1 cryptography==2.1.4 PyYAML==3.12 pytest==3.4.2 pytest-cov==2.5.1 pytest-mock==1.7.1 pytest-pylint==0.9.0 requests-mock==1.4.0 spec==1.4.1
pip==9.0.2 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.5.0 tox==2.9.1 coverage==4.5.1 Sphinx==1.7.1 cryptography==2.2 PyYAML==3.12 pytest==3.4.2 pytest-cov==2.5.1 pytest-mock==1.7.1 pytest-pylint==0.9.0 requests-mock==1.4.0 spec==1.4.1
Update bumpversion from 0.5.3 to 0.6.0
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.8.1 coverage==4.4.1 Sphinx==1.6.3 sphinx-rtd-theme==0.2.4 cryptography==2.0.3 PyYAML==3.12 pytest==3.2.1 pytest-cov==2.5.1 pytest-runner==2.12 codecov==2.0.9 matplotlib==2.0.2
pip==9.0.1 bumpversion==0.6.0 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.8.1 coverage==4.4.1 Sphinx==1.6.3 sphinx-rtd-theme==0.2.4 cryptography==2.0.3 PyYAML==3.12 pytest==3.2.1 pytest-cov==2.5.1 pytest-runner==2.12 codecov==2.0.9 matplotlib==2.0.2
Update hypothesis from 3.11.0 to 3.11.1
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.3.0 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.1 pytest==3.1.0 hypothesis==3.11.0 pony==0.7.1 sphinx_rtd_theme==0.2.4
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.3.0 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.1 pytest==3.1.0 hypothesis==3.11.1 pony==0.7.1 sphinx_rtd_theme==0.2.4
Update pip from 8.1.2 to 9.0.1
pip==8.1.2 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.6.0 tox==2.3.1 coverage==4.1 Sphinx==1.4.8 cryptography==1.7 PyYAML==3.11 pytest==2.9.2
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.6.0 tox==2.3.1 coverage==4.1 Sphinx==1.4.8 cryptography==1.7 PyYAML==3.11 pytest==2.9.2
Update cryptography from 1.2.2 to 1.2.3
bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.5.4 tox==2.3.1 coverage==4.0.3 Sphinx==1.3.6 cryptography==1.2.2 PyYAML==3.11 requests-mock==0.7.0 setuptools==20.2.2
bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==2.5.4 tox==2.3.1 coverage==4.0.3 Sphinx==1.3.6 cryptography==1.2.3 PyYAML==3.11 requests-mock==0.7.0 setuptools==20.2.2
Add MSPL license for project.
Microsoft Public License (MS-PL) [OSI Approved License] This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. A "contribution" is the original software, or any additions or changes to the software. A "contributor" is any person that distributes its contribution under this license. "Licensed patents" are a contributor's patent claims that read directly on its contribution. 2. Grant of Rights (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. 3. Conditions and Limitations (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
Update Terminightor to 0.9.2 (4)
Categories:Time License:GPLv3+ Web Site: Source Code:https://github.com/theScrabi/Terminightor Issue Tracker:https://github.com/theScrabi/Terminightor/issues Auto Name:Terminightor Summary:Alarm clock based on NFC tags Description: A simple alarm clock with a spicy special: In order to put off an alarm, you have to hold a NFC tag onto your phone. Unless you do that the alarm will not stop, even if you try to kill the Terminightor service. So if you put a tag for example into your bathroom, and set up an alarm with that tag, it will ensure that you really get up in the morning. Features: * repeat/don't repeat alarms * repeat alarms only on certain week days * custom ring-tone * put vibration on/off * put alarms off via NFC tag . Repo Type:git Repo:https://github.com/theScrabi/Terminightor Build:0.8,1 commit=v0.8-beta subdir=app gradle=yes Build:0.9,2 commit=v0.9 subdir=app gradle=yes Build:0.9.1,3 commit=0.9.1 subdir=app gradle=yes Auto Update Mode:Version %v Update Check Mode:Tags Current Version:0.9.1 Current Version Code:3
Categories:Time License:GPLv3+ Web Site: Source Code:https://github.com/theScrabi/Terminightor Issue Tracker:https://github.com/theScrabi/Terminightor/issues Auto Name:Terminightor Summary:Alarm clock based on NFC tags Description: A simple alarm clock with a spicy special: In order to put off an alarm, you have to hold a NFC tag onto your phone. Unless you do that the alarm will not stop, even if you try to kill the Terminightor service. So if you put a tag for example into your bathroom, and set up an alarm with that tag, it will ensure that you really get up in the morning. Features: * repeat/don't repeat alarms * repeat alarms only on certain week days * custom ring-tone * put vibration on/off * put alarms off via NFC tag . Repo Type:git Repo:https://github.com/theScrabi/Terminightor Build:0.8,1 commit=v0.8-beta subdir=app gradle=yes Build:0.9,2 commit=v0.9 subdir=app gradle=yes Build:0.9.1,3 commit=0.9.1 subdir=app gradle=yes Build:0.9.2,4 commit=0.9.2 subdir=app gradle=yes Auto Update Mode:Version %v Update Check Mode:Tags Current Version:0.9.2 Current Version Code:4
Bump art from 4.4 to 4.5
psutil==5.6.7 requests==2.22.0 art==4.4 setuptools>=40.8.0 vulture>=1.0 bandit>=1.5.1 pydocstyle>=3.0.0
psutil==5.6.7 requests==2.22.0 art==4.5 setuptools>=40.8.0 vulture>=1.0 bandit>=1.5.1 pydocstyle>=3.0.0
Update treeherder-client from 1.7.0 to 2.0.1
beautifulsoup4==4.4.0 bugsy==0.4.1 click==4.1 Flask==0.10.1 gprof2dot==2015.2.3 gunicorn==19.3.0 httplib2==0.9.1 ijson==2.2 itsdangerous==0.24 Jinja2==2.7.3 keyring==5.4 lpthw.web==1.1 MarkupSafe==0.23 mozci==0.14.0 oauth2==1.5.211 progressbar==2.3 PyHawk-with-a-single-extra-commit==0.1.5 redis==2.10.3 requests==2.7.0 rq==0.5.4 taskcluster==0.0.24 treeherder-client==1.7.0 uWSGI==2.0.11.1 Werkzeug==0.10.4 wheel==0.24.0
beautifulsoup4==4.4.0 bugsy==0.4.1 click==4.1 Flask==0.10.1 gprof2dot==2015.2.3 gunicorn==19.3.0 ijson==2.2 itsdangerous==0.24 Jinja2==2.7.3 keyring==5.4 lpthw.web==1.1 MarkupSafe==0.23 mozci==0.14.0 progressbar==2.3 PyHawk-with-a-single-extra-commit==0.1.5 redis==2.10.3 requests==2.7.0 rq==0.5.4 taskcluster==0.0.24 uWSGI==2.0.11.1 Werkzeug==0.10.4 wheel==0.24.0 # Required by mozci treeherder-client==2.0.1 # Required by treeherder-client mohawk==0.3.1 requests-hawk==1.0.0 six==1.10.0
Update pytest from 3.2.0 to 3.2.1
docker==2.5.0 molecule==1.25.0 pytest==3.2.0 python-vagrant==0.5.15 testinfra==1.6.5 tox==2.7.0
docker==2.5.0 molecule==1.25.0 pytest==3.2.1 python-vagrant==0.5.15 testinfra==1.6.5 tox==2.7.0
Update dependency google-auth to v1.21.0
cachetools==4.1.1 certifi==2020.6.20 chardet==3.0.4 coverage==5.2.1 google-api-core==1.22.1 google-api-python-client==1.11.0 google-auth==1.20.1 google-auth-httplib2==0.0.4 google-auth-oauthlib==0.4.1 googleapis-common-protos==1.52.0 httplib2==0.18.1 idna==2.10 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.13.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 python-slugify==4.0.1 pytube3==9.6.4 pytz==2020.1 requests==2.24.0 requests-oauthlib==1.3.0 rsa==4.6 sitemap-python==0.2.0 six==1.15.0 text-unidecode==1.3 typing-extensions==3.7.4.3 uritemplate==3.0.1 urllib3==1.25.10
cachetools==4.1.1 certifi==2020.6.20 chardet==3.0.4 coverage==5.2.1 google-api-core==1.22.1 google-api-python-client==1.11.0 google-auth==1.21.0 google-auth-httplib2==0.0.4 google-auth-oauthlib==0.4.1 googleapis-common-protos==1.52.0 httplib2==0.18.1 idna==2.10 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.13.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 python-slugify==4.0.1 pytube3==9.6.4 pytz==2020.1 requests==2.24.0 requests-oauthlib==1.3.0 rsa==4.6 sitemap-python==0.2.0 six==1.15.0 text-unidecode==1.3 typing-extensions==3.7.4.3 uritemplate==3.0.1 urllib3==1.25.10
Update flake8-isort from 2.2.1 to 2.2.2
# Everything the developer needs in addition to the production requirements -r prod.txt # Testing pytest==3.1.2 WebTest==2.0.27 factory-boy==2.8.1 # Lint and code style flake8==3.3.0 flake8-blind-except==0.1.1 flake8-debugger==1.4.0 flake8-docstrings==1.1.0 flake8-isort==2.2.1 flake8-quotes==0.11.0 isort==4.2.15 pep8-naming==0.4.1
# Everything the developer needs in addition to the production requirements -r prod.txt # Testing pytest==3.1.2 WebTest==2.0.27 factory-boy==2.8.1 # Lint and code style flake8==3.3.0 flake8-blind-except==0.1.1 flake8-debugger==1.4.0 flake8-docstrings==1.1.0 flake8-isort==2.2.2 flake8-quotes==0.11.0 isort==4.2.15 pep8-naming==0.4.1
Update wheel from 0.29.0 to 0.30.0
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.8.1 coverage==4.4.1 Sphinx==1.6.4 pytest==3.2.1 pytest-runner==2.12.1 faker==0.8.3 pandas==0.20.3 sphinxcontrib-napoleon==0.6.1 tqdm==4.15.0 pytest-benchmark==3.1.1 networkx==2.0
pip==9.0.1 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.4.1 tox==2.8.1 coverage==4.4.1 Sphinx==1.6.4 pytest==3.2.1 pytest-runner==2.12.1 faker==0.8.3 pandas==0.20.3 sphinxcontrib-napoleon==0.6.1 tqdm==4.15.0 pytest-benchmark==3.1.1 networkx==2.0
Update awscli and botocore in tandom with boto3
click==8.0.4 Jinja2==3.0.3 PyYAML==5.4.1 awscli==1.22.62 requests==2.27.1 boto3==1.21.18 botocore==1.24.7 docopt==0.6.2 bcrypt==3.2.0 yq==2.13.0 rsa>=4.7 # not directly required, pinned by Snyk to avoid a vulnerability
click==8.0.4 Jinja2==3.0.3 PyYAML==5.4.1 awscli==1.22.73 requests==2.27.1 boto3==1.21.18 botocore==1.24.18 docopt==0.6.2 bcrypt==3.2.0 yq==2.13.0 rsa>=4.7 # not directly required, pinned by Snyk to avoid a vulnerability
Update pip from 22.2.1 to 22.2.2
wheel==0.37.1 watchdog==2.1.9 pip==22.2.1 flake8==5.0.3 Sphinx==5.1.1 tox==3.25.1 coverage==6.4.2 PyYAML==6.0 pytest==7.1.2
wheel==0.37.1 watchdog==2.1.9 pip==22.2.2 flake8==5.0.3 Sphinx==5.1.1 tox==3.25.1 coverage==6.4.2 PyYAML==6.0 pytest==7.1.2
Update cryptography from 2.2.2 to 2.3
pip==10.0.1 wheel==0.31.1 watchdog==0.8.3 flake8==3.5.0 tox==3.1.2 coverage==4.5.1 Sphinx==1.7.6 cryptography==2.2.2 PyYAML==3.13 pytest==3.6.3 pytest-runner==4.2
pip==10.0.1 wheel==0.31.1 watchdog==0.8.3 flake8==3.5.0 tox==3.1.2 coverage==4.5.1 Sphinx==1.7.6 cryptography==2.3 PyYAML==3.13 pytest==3.6.3 pytest-runner==4.2
Add executable permission to tools.
file(GLOB BT_FILES *.bt) file(GLOB TXT_FILES *.txt) list(REMOVE_ITEM TXT_FILES ${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt) install(FILES ${BT_FILES} DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/bpftrace/tools) install(FILES ${TXT_FILES} DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/bpftrace/tools/doc) add_subdirectory(old)
file(GLOB BT_FILES *.bt) file(GLOB TXT_FILES *.txt) list(REMOVE_ITEM TXT_FILES ${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt) install(PROGRAMS ${BT_FILES} DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/bpftrace/tools) install(FILES ${TXT_FILES} DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/bpftrace/tools/doc) add_subdirectory(old)
Update alagitpull from 0.0.11 to 0.0.12
-r ./base.txt sphinx==1.6.2 alagitpull==0.0.11 releases==1.3.1 # Updated from 1.2.0
-r ./base.txt sphinx==1.6.2 alagitpull==0.0.12 releases==1.3.1 # Updated from 1.2.0
Update sphinx from 1.5.3 to 1.5.5
click==6.7 PyYAML==3.12 fs==0.5.5a1 pip==9.0.1 wheel==0.29.0 flake8==3.3.0 tox==2.6.0 coverage==4.3.4 pytest==3.0.7 pytest_cov==2.4.0 Sphinx==1.5.3 sphinx-rtd-theme==0.2.4 moto==0.4.31 pymongo==3.4.0 boto3==1.4.4 bumpversion==0.5.3 watchdog==0.8.3 cryptography==1.8.1 clatter==0.1.1
click==6.7 PyYAML==3.12 fs==0.5.5a1 pip==9.0.1 wheel==0.29.0 flake8==3.3.0 tox==2.6.0 coverage==4.3.4 pytest==3.0.7 pytest_cov==2.4.0 Sphinx==1.5.5 sphinx-rtd-theme==0.2.4 moto==0.4.31 pymongo==3.4.0 boto3==1.4.4 bumpversion==0.5.3 watchdog==0.8.3 cryptography==1.8.1 clatter==0.1.1
Update pytest from 3.0.5 to 3.0.6
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.2.1 tox==2.5.0 coverage==4.3.4 Sphinx==1.5.1 cryptography==1.7.1 PyYAML==3.12 pytest==3.0.5 numpy==1.12.0 scipy==0.18.1 scikit-learn==0.18.1
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.2.1 tox==2.5.0 coverage==4.3.4 Sphinx==1.5.1 cryptography==1.7.1 PyYAML==3.12 pytest==3.0.6 numpy==1.12.0 scipy==0.18.1 scikit-learn==0.18.1
Update zope.interface from 4.4.3 to 4.5.0
# # This file is autogenerated by pip-compile # To update, run: # # pip-compile --no-annotate --output-file requirements.txt requirements.in # asn1crypto==0.24.0 attrs==18.1.0 automat==0.6.0 cffi==1.11.5; platform_python_implementation != 'PyPy' constantly==15.1.0 cryptography==2.2.2 enum34==1.1.6 idna==2.6 incremental==17.5.0 ipaddress==1.0.21 lxml==4.2.1 packaging==17.1 pyasn1-modules==0.2.1 pyasn1==0.4.2 pycparser==2.18; platform_python_implementation != 'PyPy' pyopenssl==17.5.0 pyparsing==2.2.0 service-identity==17.0.0 six==1.11.0 twisted[tls]==18.4.0 zope.interface==4.4.3
# # This file is autogenerated by pip-compile # To update, run: # # pip-compile --no-annotate --output-file requirements.txt requirements.in # asn1crypto==0.24.0 attrs==18.1.0 automat==0.6.0 cffi==1.11.5; platform_python_implementation != 'PyPy' constantly==15.1.0 cryptography==2.2.2 enum34==1.1.6 idna==2.6 incremental==17.5.0 ipaddress==1.0.21 lxml==4.2.1 packaging==17.1 pyasn1-modules==0.2.1 pyasn1==0.4.2 pycparser==2.18; platform_python_implementation != 'PyPy' pyopenssl==17.5.0 pyparsing==2.2.0 service-identity==17.0.0 six==1.11.0 twisted[tls]==18.4.0 zope.interface==4.5.0
Update pandas from 1.3.5 to 1.4.1
numpy==1.22.2 pyyaml>=4.2b1 pandas==1.3.5 scipy==1.7.3 astropy==5.0 matplotlib==3.5.1 tables==3.7.0
numpy==1.22.2 pyyaml>=4.2b1 pandas==1.4.1 scipy==1.7.3 astropy==5.0 matplotlib==3.5.1 tables==3.7.0
Update to Freeciv server svn r24951.
FCREV=24949 FCBRANCH=trunk ORIGCAPSTR="+Freeciv.Devel-2.6-2014.May.22" WEBCAPSTR="+Freeciv.Web.Devel-2.6-2014.May.22"
FCREV=24951 FCBRANCH=trunk ORIGCAPSTR="+Freeciv.Devel-2.6-2014.May.22" WEBCAPSTR="+Freeciv.Web.Devel-2.6-2014.May.22"
Update TilelessMap to 0.1.4 (3)
Categories:Navigation License:GPL-3.0 Author Name:Nicklas Avén Author Email:nicklas.aven@jordogskog.no Web Site:https://github.com/TilelessMap/TilelessMap Source Code:https://github.com/TilelessMap/TilelessMap Issue Tracker:https://github.com/TilelessMap/TilelessMap/issues Auto Name:TilelessMap Repo Type:git Repo:https://github.com/TilelessMap/TilelessMap Build:0.1.2,1 commit=v0.1.2 subdir=Android/app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.1.2 Current Version Code:1
Categories:Navigation License:GPL-3.0 Author Name:Nicklas Avén Author Email:nicklas.aven@jordogskog.no Web Site:https://github.com/TilelessMap/TilelessMap Source Code:https://github.com/TilelessMap/TilelessMap Issue Tracker:https://github.com/TilelessMap/TilelessMap/issues Auto Name:TilelessMap Repo Type:git Repo:https://github.com/TilelessMap/TilelessMap Build:0.1.2,1 commit=v0.1.2 subdir=Android/app gradle=yes Build:0.1.4,3 commit=v0.1.4 subdir=Android/app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.1.4 Current Version Code:3
Update IPCam Demo to 1.8.0 (11)
Categories:Internet License:MIT Web Site: Source Code:https://github.com/niqdev/ipcam-view Issue Tracker:https://github.com/niqdev/ipcam-view/issues Auto Name:IPCam Demo Summary:MJPEG video streaming on Android Description: Demo app for the [https://github.com/niqdev/ipcam-view ipcam-view library] with current features handle basic authentication, multiple camera in one activity and take snapshots. . Repo Type:git Repo:https://github.com/niqdev/ipcam-view.git Build:1.7.0,10 commit=v1.7.0 subdir=app gradle=yes scandelete=mjpeg-view/src/main/jniLibs Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.7.0 Current Version Code:10
Categories:Internet License:MIT Web Site: Source Code:https://github.com/niqdev/ipcam-view Issue Tracker:https://github.com/niqdev/ipcam-view/issues Auto Name:IPCam Demo Summary:MJPEG video streaming on Android Description: Demo app for the [https://github.com/niqdev/ipcam-view ipcam-view library] with current features handle basic authentication, multiple camera in one activity and take snapshots. . Repo Type:git Repo:https://github.com/niqdev/ipcam-view.git Build:1.7.0,10 commit=v1.7.0 subdir=app gradle=yes scandelete=mjpeg-view/src/main/jniLibs Build:1.8.0,11 commit=v1.8.0 subdir=app gradle=yes scandelete=mjpeg-view/src/main/jniLibs Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:1.8.0 Current Version Code:11
Update AudioMeter to 1.2 (3)
Categories:Multimedia License:GPLv3+ Web Site:http://quaap.com/D/AudioMeter Source Code:https://github.com/quaap/AudioMeter Issue Tracker:https://github.com/quaap/AudioMeter/issues Auto Name:AudioMeter Summary:A simple VU-style audio meter Description: A simple VU-style audio meter. You can choose from several formulas to allow the meter to work in low- and high-noise level enviromnents. I noticed there was no audio meter in F-Droid, so I thought I'd build one from scratch. . Repo Type:git Repo:https://github.com/quaap/AudioMeter Build:1.0,1 commit=v1.0.0 subdir=app gradle=yes Build:1.1,2 commit=v1.1.0 subdir=app gradle=yes Auto Update Mode:Version v%v.0 Update Check Mode:Tags Current Version:1.1 Current Version Code:2
Categories:Multimedia License:GPLv3+ Web Site:http://quaap.com/D/AudioMeter Source Code:https://github.com/quaap/AudioMeter Issue Tracker:https://github.com/quaap/AudioMeter/issues Auto Name:AudioMeter Summary:A simple VU-style audio meter Description: A simple VU-style audio meter. You can choose from several formulas to allow the meter to work in low- and high-noise level enviromnents. I noticed there was no audio meter in F-Droid, so I thought I'd build one from scratch. . Repo Type:git Repo:https://github.com/quaap/AudioMeter Build:1.0,1 commit=v1.0.0 subdir=app gradle=yes Build:1.1,2 commit=v1.1.0 subdir=app gradle=yes Build:1.2,3 commit=v1.2.0 subdir=app gradle=yes Auto Update Mode:Version v%v.0 Update Check Mode:Tags Current Version:1.2 Current Version Code:3
Update pytest from 3.10.1 to 4.0.0
-r requirements.txt -e . ipdb==0.10.1 pytest==3.10.1 pytest-sugar==0.9.2
-r requirements.txt -e . ipdb==0.10.1 pytest==4.0.0 pytest-sugar==0.9.2
Update ipdb from 0.10.1 to 0.10.3
# Local development dependencies go here -r base.txt Sphinx==1.6.2 django-extensions==1.8.0 Werkzeug==0.12.2 # django-debug-toolbar that works with Django 1.5+ django-debug-toolbar==1.8 # improved REPL ipdb==0.10.1 factory-boy==2.8.1
# Local development dependencies go here -r base.txt Sphinx==1.6.2 django-extensions==1.8.0 Werkzeug==0.12.2 # django-debug-toolbar that works with Django 1.5+ django-debug-toolbar==1.8 # improved REPL ipdb==0.10.3 factory-boy==2.8.1
Update Jinja2 versioning to avoid Sphinx failures.
sphinx==3.3.0 sphinx_rtd_theme==0.5.0 sphinxcontrib-katex==0.7.1 sphinxcontrib-bibtex==1.0.0 sphinx-autodoc-typehints==1.11.1 IPython==7.16.1 ipykernel==5.3.4 pandoc==1.0.2 myst_nb==0.13.1 docutils==0.16 matplotlib==3.5.0
sphinx==3.3.0 sphinx_rtd_theme==0.5.0 sphinxcontrib-katex==0.7.1 sphinxcontrib-bibtex==1.0.0 sphinx-autodoc-typehints==1.11.1 IPython==7.16.1 ipykernel==5.3.4 pandoc==1.0.2 myst_nb==0.13.1 docutils==0.16 matplotlib==3.5.0 Jinja2<3.1
Comment out matplotlib optional requirement.
### Optional Dependencies for Additional Plotly Functionality ### ### ### ### To install, run: ### ### $ pip install -r optional-requirements.txt ### ### ### ################################################################### ## numpy (technically, this is covered by matplotlib's deps) ## numpy ## matplotlylib dependencies ## matplotlib==1.3.1 ## testing dependencies ## nose==1.3.3 ## ipython dependencies ## ipython[all] ## pandas deps for some matplotlib functionality ## pandas ## scipy deps for some FigureFactory functions ## scipy
### Optional Dependencies for Additional Plotly Functionality ### ### ### ### To install, run: ### ### $ pip install -r optional-requirements.txt ### ### ### ################################################################### ## numpy (technically, this is covered by matplotlib's deps) ## numpy ## matplotlylib dependencies ## # matplotlib==1.3.1 ## testing dependencies ## nose==1.3.3 ## ipython dependencies ## ipython[all] ## pandas deps for some matplotlib functionality ## pandas ## scipy deps for some FigureFactory functions ## scipy
Update CV of Meeting-Cost-Clock to 1.08-12 (12)
Categories:Time License:GPL-2.0-only Web Site: Source Code:https://gitlab.com/kollo/MeetingCostClock Issue Tracker:https://gitlab.com/kollo/MeetingCostClock/issues Auto Name:Meeting-Cost-Clock Summary:A Time-is-Money Stopwatch for Meetings Description: Clock, which measures the time in a currency value (EURO or Dollar). It can show, how expensive a meeting will be taking into account the number of participants and a mean value of a price per person per hour. . Repo Type:git Repo:https://gitlab.com/kollo/MeetingCostClock.git Build:1.08-10,10 commit=3addf5a40f067e72e88fc8041455c544a2f23716 gradle=yes Build:1.08-11,11 commit=6f412a4fca72d0010da5e0ee8dff0dda3f048220 gradle=yes Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.08-11 Current Version Code:11
Categories:Time License:GPL-2.0-only Web Site: Source Code:https://gitlab.com/kollo/MeetingCostClock Issue Tracker:https://gitlab.com/kollo/MeetingCostClock/issues Auto Name:Meeting-Cost-Clock Summary:A Time-is-Money Stopwatch for Meetings Description: Clock, which measures the time in a currency value (EURO or Dollar). It can show, how expensive a meeting will be taking into account the number of participants and a mean value of a price per person per hour. . Repo Type:git Repo:https://gitlab.com/kollo/MeetingCostClock.git Build:1.08-10,10 commit=3addf5a40f067e72e88fc8041455c544a2f23716 gradle=yes Build:1.08-11,11 commit=6f412a4fca72d0010da5e0ee8dff0dda3f048220 gradle=yes Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.08-12 Current Version Code:12
Write a runtime function for the action "numeric-operand" -- which is now handled only by inline code (that is unnecessarily large)
# no-space dashes-long-line <new_line> sub function__numeric_increment( ) { <new_line> $global_action_name_with_underscores = 'numeric_increment' ; <new_line> template-check-operand-one-contains-integer $global_action_result = ' ' ; <new_line> code-get-or-put-phrase-definition-begin $global_operand_one code-get-or-put-phrase-definition-end = &function_parameterized__convert_numeric_value_into_numeric_text( 1 + &function_parameterized__convert_numeric_text_into_numeric_value( code-get-or-put-phrase-definition-begin $global_operand_one code-get-or-put-phrase-definition-end ) ) ; <new_line> template-function-segment-ending
Update vent from 0.9.0 to 0.9.1
docker==3.7.2 python-magic==0.4.15 redis==3.2.1 rq==1.0 vent==0.9.0
docker==3.7.2 python-magic==0.4.15 redis==3.2.1 rq==1.0 vent==0.9.1
Add TLS 1.3 change logs
Bugfix * Fix a TLS 1.3 handshake failure when the first attempt to send the client Finished message on the network cannot be satisfied. Features * Add support for authentication of TLS 1.3 clients by TLS 1.3 servers. * Add support for server HelloRetryRequest message. The TLS 1.3 client is now capable of negotiating another shared secret if the one sent in its first ClientHello was not suitable to the server. * Add support for TLS version negotiation. If both TLS 1.2 and TLS 1.3 protocols are enabled in the build of Mbed TLS, the TLS client now negotiates TLS 1.3 or TLS 1.2 with TLS servers. * Enable building of Mbed TLS with TLS 1.3 protocol support but without TLS 1.2 protocol support. * Mbed TLS provides an implementation of a TLS 1.3 server (ephemeral key establishment only). See docs/architecture/tls13-support.md for a description of the support. The MBEDTLS_SSL_PROTO_TLS1_3 and MBEDTLS_SSL_SRV_C configuration options control the enablement of the support.
Update lz4 from 2.1.6 to 2.1.10
flake8==3.7.7 pytest==4.6.3 pytest-cov==2.7.1 pytest-catchlog==1.2.2 docker-py==1.10.6 lz4==2.1.6 xxhash==1.3.0 python-snappy==0.5.3 # pypiwin32==219 cython==0.29.6
flake8==3.7.7 pytest==4.6.3 pytest-cov==2.7.1 pytest-catchlog==1.2.2 docker-py==1.10.6 lz4==2.1.10 xxhash==1.3.0 python-snappy==0.5.3 # pypiwin32==219 cython==0.29.6
Update lz4 from 1.1.0 to 2.0.0
flake8==3.4.1 pytest==3.6.0 pytest-cov==2.5.1 pytest-catchlog==1.2.2 docker-py==1.10.6 lz4==1.1.0 xxhash==1.0.1 python-snappy==0.5.1 # pypiwin32==219 cython==0.28.3
flake8==3.4.1 pytest==3.6.0 pytest-cov==2.5.1 pytest-catchlog==1.2.2 docker-py==1.10.6 lz4==2.0.0 xxhash==1.0.1 python-snappy==0.5.1 # pypiwin32==219 cython==0.28.3
Change license from MIT to BSD.
The MIT License (MIT) Copyright (c) 2015 Oregon Health & Science University Knight Cancer Institute. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copyright (c) 2014 Oregon Health & Science University Knight Cancer Institute All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Add date bindables to core binadble object
object Bindables { import play.api.mvc.QueryStringBindable import play.api.mvc.PathBindable import apidocreferenceapi.models._ private val enumAgeGroupNotFound = (key: String, e: Exception) => s"Unrecognized $key, should be one of ${AgeGroup.all.mkString(", ")}" implicit val pathBindableEnumAgeGroup = new PathBindable.Parsing[AgeGroup] ( AgeGroup.fromString(_).get, _.toString, enumAgeGroupNotFound ) implicit val queryStringBindableEnumAgeGroup = new QueryStringBindable.Parsing[AgeGroup]( AgeGroup.fromString(_).get, _.toString, enumAgeGroupNotFound ) }
object Bindables { import play.api.mvc.QueryStringBindable import play.api.mvc.PathBindable import org.joda.time.{DateTime, LocalDate} import org.joda.time.format.ISODateTimeFormat import apidocreferenceapi.models._ // Type: date-time-iso8601 implicit val pathBindableTypeDateTimeIso8601 = new PathBindable.Parsing[DateTime]( ISODateTimeFormat.dateTimeParser.parseDateTime(_), _.toString, (key: String, e: Exception) => s"Error parsing date time $key. Example: 2014-04-29T11:56:52Z" ) // Type: date-iso8601 implicit val pathBindableTypeDateTimeIso8601 = new PathBindable.Parsing[LocalDate]( ISODateTimeFormat.yearMonthDay.parseLocalDate(_), _.toString, (key: String, e: Exception) => s"Error parsing date time $key. Example: 2014-04-29" ) // Enum: AgeGroup private val enumAgeGroupNotFound = (key: String, e: Exception) => s"Unrecognized $key, should be one of ${AgeGroup.all.mkString(", ")}" implicit val pathBindableEnumAgeGroup = new PathBindable.Parsing[AgeGroup] ( AgeGroup.fromString(_).get, _.toString, enumAgeGroupNotFound ) implicit val queryStringBindableEnumAgeGroup = new QueryStringBindable.Parsing[AgeGroup]( AgeGroup.fromString(_).get, _.toString, enumAgeGroupNotFound ) }
Address an issue that was preventing make upgrade
# # This file is autogenerated by pip-compile # To update, run: # # make upgrade # click==7.0 # via pip-tools pip-tools==4.3.0 six==1.14.0 # via pip-tools
# # This file is autogenerated by pip-compile # To update, run: # # make upgrade # click==7.0 # via pip-tools pip-tools==4.4.0 six==1.14.0 # via pip-tools
Add notes for September 2015 update
# Unpacking, copying from the dropbox download cd Documents/ mkdir ivo cd ivo/ unzip /Users/mb312/Downloads/revised\ ivo\ pdfs.zip mv revised\ ivo\ pdfs/* . rmdir revised\ ivo\ pdfs/ open homepage.pdf open revised\ Front\ page\ for\ Tripartita.pdf open Decretum\ PDF/Revised\ Front\ page\ for\ Decretum.pdf open letters\ PDF/Letters\ frontpage.pdf # Editing the website repository, meanwhile cd ivo-of-chartres.github.com/ ivo-rename.py ~/Documents/ivo git stat mv tripartita/tripb_cont.pdf tripartita/trip_b_cont.pdf mv tripartita/tripa.1.pdf tripartita/trip_a_1.pdf gvr index.html open index.html cd letters/ cp ~/Documents/ivo/letters\ PDF/7\ -\ Appendix\ * . cp ~/Documents/ivo/letters\ PDF/Manuscripts.pdf webmanuscripts.pdf mv 7\ -\ Appendix\ B.pdf letters_appendix_b.pdf mv 7\ -\ Appendix\ C\ -\ tables.pdf letters_appendix_c_tables.pdf open letters.html open panormia.html git add letters/*.pdf git commit -a
Update django-extensions from 2.1.2 to 2.1.3
# Local development dependencies go here -r base.txt Sphinx==1.8.0 coverage==4.5.1 django-extensions==2.1.2 django-test-plus==1.1.1 factory-boy==2.11.1 django-debug-toolbar==1.10.1 # pytest! pytest-django==3.4.3 pytest-sugar==0.9.1
# Local development dependencies go here -r base.txt Sphinx==1.8.0 coverage==4.5.1 django-extensions==2.1.3 django-test-plus==1.1.1 factory-boy==2.11.1 django-debug-toolbar==1.10.1 # pytest! pytest-django==3.4.3 pytest-sugar==0.9.1
Create License for the repository
The MIT License (MIT) Copyright (c) 2015 Panayiotis Georgiou Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Split up status info (translator vs main program).
The various translations of POLUtils are provided by the following people: Language State Translator ---------- ------------------------- ------------------------------------- Dutch Installer Only Pebbles French Installer Only Kapibara from Phoenix German Full Andy Müller (Missingno from Fairy) Spanish Installer Only Kapibara from Phoenix
The various translations of POLUtils are provided by the following people: Language Installer Main Program Translator ---------- --------- ------------ ------------------------------------- Dutch Yes No Pebbles French Yes In Progress Kapibara from Phoenix German Yes Partial Andy Müller (Missingno from Fairy) Spanish Yes In Progress Kapibara from Phoenix If you want to contribute a translation not listed above, let me know at pebbles.pandemonium@telenet.be!
Revert rL344365: [tests] Readd Python binding tests to check-all
# Test target to run Python test suite from main build. add_custom_target(check-clang-python COMMAND ${CMAKE_COMMAND} -E env CLANG_LIBRARY_PATH=$<TARGET_FILE_DIR:libclang> ${PYTHON_EXECUTABLE} -m unittest discover DEPENDS libclang WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/..) set_property(GLOBAL APPEND PROPERTY LLVM_ADDITIONAL_TEST_TARGETS check-clang-python)
# Test target to run Python test suite from main build. add_custom_target(check-clang-python COMMAND ${CMAKE_COMMAND} -E env CLANG_LIBRARY_PATH=$<TARGET_FILE_DIR:libclang> ${PYTHON_EXECUTABLE} -m unittest discover DEPENDS libclang WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/..) #set_property(GLOBAL APPEND PROPERTY LLVM_ADDITIONAL_TEST_TARGETS check-clang-python)
Document the device-tree entries for the operator panel
Operator Panel (oppanel) ------------------------ oppanel { compatible = "ibm,opal-oppanel"; #lines = <0x2>; #length = <0x10>; }; The Operator Panel is a device for displaying small amounts of textual data to an administrator. On IBM POWER8 systems with an FSP, this is a small 16x2 LCD panel that can be viewed either from the Web UI of the FSP (known as ASM) or by physically going to the machine and looking at the panel. The operator panel does not have to be present. If it is, there are OPAL calls to read and write to it. The device tree entry is so that the host OS knows the size of the panel and can pass buffers of the appropriate size to the OPAL calls.
Update pytest from 3.1.3 to 3.2.0
# Everything the developer needs in addition to the production requirements -r prod.txt # Testing pytest==3.1.3 WebTest==2.0.27 factory-boy==2.9.0 # Lint and code style flake8==3.4.1 flake8-blind-except==0.1.1 flake8-debugger==1.4.0 flake8-docstrings==1.1.0 flake8-isort==2.2.1 flake8-quotes==0.11.0 isort==4.2.15 pep8-naming==0.4.1
# Everything the developer needs in addition to the production requirements -r prod.txt # Testing pytest==3.2.0 WebTest==2.0.27 factory-boy==2.9.0 # Lint and code style flake8==3.4.1 flake8-blind-except==0.1.1 flake8-debugger==1.4.0 flake8-docstrings==1.1.0 flake8-isort==2.2.1 flake8-quotes==0.11.0 isort==4.2.15 pep8-naming==0.4.1
Update pytest from 3.5.0 to 3.5.1
invoke==0.22.1 pytest==3.5.0 tox==3.0.0 mock==2.0.0
invoke==0.22.1 pytest==3.5.1 tox==3.0.0 mock==2.0.0