Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Update sphinx from 1.7.9 to 1.8.0
-r requirements.txt check-manifest==0.37 pyroma==2.4 pytest-mock==1.10.0 pytest==3.8.0 tox==3.2.1 flake8==3.5.0 twine==1.11.0 coverage==4.5.1 pytest-cov==2.6.0 Sphinx==1.7.9 sphinx-autobuild==0.7.1 redis==2.10.6 Cython==0.28.5 happybase==1.1.0
-r requirements.txt check-manifest==0.37 pyroma==2.4 pytest-mock==1.10.0 pytest==3.8.0 tox==3.2.1 flake8==3.5.0 twine==1.11.0 coverage==4.5.1 pytest-cov==2.6.0 Sphinx==1.8.0 sphinx-autobuild==0.7.1 redis==2.10.6 Cython==0.28.5 happybase==1.1.0
Update sphinx from 1.6.3 to 1.6.5
mako==1.0.7 click==6.7 mock==2.0.0 pytest-flake8==0.8.1 sphinx==1.6.3 h5py==2.7.1 sphinx_rtd_theme==0.2.4 scipy==0.19.1 Pillow==4.3.0 scipy==0.19.1
mako==1.0.7 click==6.7 mock==2.0.0 pytest-flake8==0.8.1 sphinx==1.6.5 h5py==2.7.1 sphinx_rtd_theme==0.2.4 scipy==0.19.1 Pillow==4.3.0 scipy==0.19.1
Add hint how to select matplotlib backend for openSUSE
Some Python Notes 1.) Using the ElementTree module 1.a) Flat search in the tree Instead of hierarchically stepping down the tree, a flat search can be done by any of for elem in root.findall('.//'+GPX_NAMESPACE+'trkpt'): for elem in tree.findall('//'+GPX_NAMESPACE+'trkpt'): 1.b) Using namespaces Instead of specifying the namespace URL explicitly, you can define and use a namespace like namespaces = {'gpx': 'http://www.topografix.com/GPX/1/1'} for trkpt in trkseg.findall('gpx:trkpt', namespaces): 2.) Matplotlib 2.a) Multiple axes http://matplotlib.org/examples/api/two_scales.html http://matplotlib.org/faq/howto_faq.html#multiple-y-axis-scales 2.b) Font setting http://matplotlib.org/users/customizing.html http://stackoverflow.com/questions/3899980/how-to-change-the-font-size-on-a-matplotlib-plot
Some Python Notes 1.) Using the ElementTree module 1.a) Flat search in the tree Instead of hierarchically stepping down the tree, a flat search can be done by any of for elem in root.findall('.//'+GPX_NAMESPACE+'trkpt'): for elem in tree.findall('//'+GPX_NAMESPACE+'trkpt'): 1.b) Using namespaces Instead of specifying the namespace URL explicitly, you can define and use a namespace like namespaces = {'gpx': 'http://www.topografix.com/GPX/1/1'} for trkpt in trkseg.findall('gpx:trkpt', namespaces): 2.) Matplotlib 2.a) Multiple axes http://matplotlib.org/examples/api/two_scales.html http://matplotlib.org/faq/howto_faq.html#multiple-y-axis-scales 2.b) Font setting http://matplotlib.org/users/customizing.html http://stackoverflow.com/questions/3899980/how-to-change-the-font-size-on-a-matplotlib-plot 2.c) Backend selection In my openSuSE installation, by default no graph is shown because the matplotlib backend is not pre-set. To set the backend, - either insert mpl.use('TkAgg') between import matplotlib as mpl and import matplotlib.pyplot as plt - or (see http://matplotlib.org/users/customizing.html): set the backend by placing backend : TkAgg in .config/matplotlib/matplotlibrc
Add some more info for installing numpy.
NumPy is a replacement of Numeric Python that adds the features of numarray. To install system-wide: sudo python setup.py install The setup.py script will take advantage of fast BLAS on your system if it can find it. You can guide the process using a site.cfg file. If fast BLAS and LAPACK cannot be found, then a slower default version is used. After installation, tests can be run (from outside the source directory) with: python -c 'import numpy; numpy.test()' Please note that you must have version 0.10 or later of the 'nose' test framework installed in order to run the tests. More information about nose is available here: http://somethingaboutorange.com/mrl/projects/nose/ The most current development version of NumPy is always available from our subversion repository: http://svn.scipy.org/svn/numpy/trunk
NumPy is a replacement of Numeric Python that adds the features of numarray. To install system-wide on Unix-like systems: sudo python setup.py install or (for system without sudo): su -c python setup.py install On windows, it is advised to use the official binaries. The setup.py script will take advantage of fast BLAS on your system if it can find it. You can guide the process using a site.cfg file. If fast BLAS and LAPACK cannot be found, then a slower default version is used. After installation, tests can be run (from outside the source directory) with: python -c 'import numpy; numpy.test()' Please note that you must have version 0.10 or later of the 'nose' test framework installed in order to run the tests. More information about nose is available here: http://somethingaboutorange.com/mrl/projects/nose/ The most current development version of NumPy is always available from our subversion repository: http://svn.scipy.org/svn/numpy/trunk
Use leap repository of leap_pycommon
--index-url https://pypi.python.org/simple/ -e 'git+https://github.com/pixelated/python-gnupg.git@key_extension_and_sign#egg=gnupg' pyasn1==0.1.9 requests==2.11.1 srp==1.0.6 whoosh==2.6.0 Twisted==16.1.1 -e 'git+https://0xacab.org/pixelated/leap_pycommon.git@develop#egg=leap.common' -e 'git+https://0xacab.org/pixelated/bitmask-dev.git@feat_fetch_remote_on_expiry#egg=leap.bitmask' -e 'git+https://0xacab.org/pixelated/soledad.git@master#egg=leap.soledad.common&subdirectory=common/' -e 'git+https://0xacab.org/pixelated/soledad.git@master#egg=leap.soledad.client&subdirectory=client/' -e .
--index-url https://pypi.python.org/simple/ -e 'git+https://github.com/pixelated/python-gnupg.git@key_extension_and_sign#egg=gnupg' pyasn1==0.1.9 requests==2.11.1 srp==1.0.6 whoosh==2.6.0 Twisted==16.1.1 -e 'git+https://0xacab.org/leap/leap_pycommon.git@develop#egg=leap.common' -e 'git+https://0xacab.org/pixelated/bitmask-dev.git@feat_fetch_remote_on_expiry#egg=leap.bitmask' -e 'git+https://0xacab.org/pixelated/soledad.git@master#egg=leap.soledad.common&subdirectory=common/' -e 'git+https://0xacab.org/pixelated/soledad.git@master#egg=leap.soledad.client&subdirectory=client/' -e .
Add tld statistic extracted from google
com,25270000000 org,6870000000 edu,592000000 net,1480000000 gov,892000000 uk,1740000000 de,4530000000 au,839000000 ca,1190000000 fr,2670000000 us,561000000 br,931000000 it,1310000000 info,346000000 es,813000000 nl,1490000000 tv,1650000000 jp,732000000 se,1190000000 pl,999000000 ru,761000000 eu,849000000 dk,473000000 mx,202000000 ch,544000000 ar,173000000 in,167000000 int,38000000 za,162000000 id,143000000 ie,480000000 nz,206000000 tw,206000000 tr,157000000 gr,217000000 cl,476000000 be,778000000 at,688000000 no,1220000000 ve,36300000 kr,5440000000 fm,1710000000 eg,22300000 st,17900000 co,168000000 vn,921000000 cc,181000000 me,182000000 cz,1030000000 pt,268000000 io,33200000 my,60500000 ro,164000000 hu,495000000 travel,23500000 biz,74200000 nu,38600000 is,288000000 to,41500000 fi,447000000 cn,351000000
Update Atomic to 4.2.0 (100)
Categories:Internet License:GPLv3+ Web Site:http://indrora.github.io/Atomic Source Code:https://github.com/indrora/Atomic Issue Tracker:https://github.com/indrora/Atomic/issues Auto Name:Atomic Summary:IRC (chat) client Description: Internet Relay Chat (IRC) client based on [[org.yaaic]]. . Repo Type:git Repo:https://github.com/indrora/Atomic.git Build:1.13,13 commit=f79244e6a5c67fd40cf2ee9df7fcfcf61d0c93aa subdir=application target=android-19 Build:1.14,14 commit=v1.14 subdir=application target=android-19 Build:1.15,15 commit=v1.15 subdir=application Build:1.16,16 commit=v1.16 subdir=application submodules=yes Build:1.18,18 commit=v1.18 subdir=application submodules=yes Build:1.19,19 commit=v1.19 subdir=application submodules=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:4.2.0 Current Version Code:100
Categories:Internet License:GPLv3+ Web Site:http://indrora.github.io/Atomic Source Code:https://github.com/indrora/Atomic Issue Tracker:https://github.com/indrora/Atomic/issues Auto Name:Atomic Summary:IRC (chat) client Description: Internet Relay Chat (IRC) client based on [[org.yaaic]]. . Repo Type:git Repo:https://github.com/indrora/Atomic.git Build:1.13,13 commit=f79244e6a5c67fd40cf2ee9df7fcfcf61d0c93aa subdir=application target=android-19 Build:1.14,14 commit=v1.14 subdir=application target=android-19 Build:1.15,15 commit=v1.15 subdir=application Build:1.16,16 commit=v1.16 subdir=application submodules=yes Build:1.18,18 commit=v1.18 subdir=application submodules=yes Build:1.19,19 commit=v1.19 subdir=application submodules=yes Build:4.2.0,100 commit=v4.2.0 subdir=application submodules=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:4.2.0 Current Version Code:100
Add list of packages installed on Air
bash-completion binutils bsdmake cmake ctags flac git jasper jpeg lame libogg libtiff little-cms nmap opencv ossp-uuid pil pkg-config postgresql proctools readline ssh-copy-id tbb tig wget
Add newline at end of file.
The MIT License CakePHP(tm) : The Rapid Development PHP Framework (http://cakephp.org) Copyright (c) 2005-2013, Cake Software Foundation, Inc. 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. Cake Software Foundation, Inc. 1785 E. Sahara Avenue, Suite 490-204 Las Vegas, Nevada 89104, United States of America.
The MIT License CakePHP(tm) : The Rapid Development PHP Framework (http://cakephp.org) Copyright (c) 2005-2013, Cake Software Foundation, Inc. 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. Cake Software Foundation, Inc. 1785 E. Sahara Avenue, Suite 490-204 Las Vegas, Nevada 89104, United States of America.
Change copyright notice to Shopify
Copyright (c) 2015 Bouke van der Bijl MIT License 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) 2015 Shopify MIT License 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.
Change donate link and add forceversion to cgeo
Category:Navigation License:Apache2 Web Site:http://www.cgeo.org Source Code:https://github.com/cgeo/c-geo-opensource Issue Tracker:https://github.com/cgeo/c-geo-opensource/issues Donate:https://www.paypal.com/si/cgi-bin/webscr?cmd=_flow&SESSION=wczJRQ7RLX09OOYlfZtWeC5zejaJpP9xZ5-cby5zCmoKvuI8FXtXadN-WKq&dispatch=5885d80a13c0db1f8e263663d3faee8d7283e7f0184a5674430f290db9e9c846 Summary:Geo-caching client Description: Geocaching is a sport where people hide things and you go and find them. . Repo Type:git Repo:https://github.com/cgeo/c-geo-opensource.git Update Check Mode:Market Current Version:2012.06.28 Current Version Code:20120628 #Needs version naming properly, we can't have all versions being called "developer build" #Build Version:"developer build",20120628,388a5a3b1c0885a65fb036feb2cbd3d4106e83f0,subdir=main
Category:Navigation License:Apache2 Web Site:http://www.cgeo.org Source Code:https://github.com/cgeo/c-geo-opensource Issue Tracker:https://github.com/cgeo/c-geo-opensource/issues Donate:https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=cgeo%40cgeo%2eorg&item_name=Donate%20to%20CGeo%20via%20F-droid Summary:Geo-caching client Description: Geocaching is a sport where people hide things and you go and find them. . Repo Type:git Repo:https://github.com/cgeo/c-geo-opensource.git Update Check Mode:Market Current Version:2012.06.28 Current Version Code:20120628 #use version name from Google Play #Build Version:2012.06.28,20120628,388a5a3b1c0885a65fb036feb2cbd3d4106e83f0,subdir=main,target=android-10,forceversion=yes
Set proper working directory for tests
cmake_minimum_required (VERSION 2.8) project (dirent) enable_language(C) install(FILES include/dirent.h DESTINATION include) include(CTest) add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C ${CMAKE_CFG_INTDIR}) function(add_test_executable TEST_NAME) add_executable (${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN}) add_test(NAME ${TEST_NAME} WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/tests COMMAND $<TARGET_FILE:${TEST_NAME}>) add_dependencies(check ${TEST_NAME}) target_include_directories(${TEST_NAME} PUBLIC ${CMAKE_SOURCE_DIR}/include) endfunction(add_test_executable) add_test_executable(t-compile tests/t-compile.c) add_test_executable(t-dirent tests/t-dirent.c)
cmake_minimum_required (VERSION 2.8) project (dirent) enable_language(C) install(FILES include/dirent.h DESTINATION include) include(CTest) add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C ${CMAKE_CFG_INTDIR}) function(add_test_executable TEST_NAME) add_executable (${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN}) add_test(NAME ${TEST_NAME} WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND $<TARGET_FILE:${TEST_NAME}>) add_dependencies(check ${TEST_NAME}) target_include_directories(${TEST_NAME} PUBLIC ${CMAKE_SOURCE_DIR}/include) endfunction(add_test_executable) add_test_executable(t-compile tests/t-compile.c) add_test_executable(t-dirent tests/t-dirent.c)
Update copyright year to 2014
Copyright (c) 2013 Ian Lollar MIT License 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 Ian Lollar MIT License 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.
Update excluded files to deploy
*.7z *.app *.bak *.class *.diff *.dmg *.err *.gz *.iso *.jar *.log *.patch *.rar *.swp *.tar *.vi *.vim *.zip .DS_Store .Spotlight-V100 .Trashes ._* .git/ .gitignore .gitkeep /.travis.yml /README.md /config.sample.json /libraries/Exceptions/Reference.md /rsync-deploy.sh /rsync-exclude.txt Thumbs.db
*.7z *.app *.bak *.class *.diff *.dmg *.err *.gz *.iso *.jar *.log *.patch *.rar *.swp *.tar *.vi *.vim *.zip .DS_Store .Spotlight-V100 .Trashes ._* .git/ .gitignore .gitkeep /.travis.yml /CONTRIBUTING.md /README.md /bin/ /composer.json /composer.lock /etc/config.sample.json /etc/rsync-deploy.sh /etc/rsync-exclude.txt /lib/carlbennett/php-mvc/README.md /lib/carlbennett/php-mvc/src/libraries/Exceptions/Reference.md /src/libraries/Exceptions/Reference.md /tmp/ Thumbs.db
Update year-range in license file
The MIT License (MIT) Copyright (c) 2014-2016 Evan Hahn Copyright (c) 2016-2018 John Gardner 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.
The MIT License (MIT) Copyright (c) 2014-2016 Evan Hahn Copyright (c) 2016-2019 John Gardner 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.
Add a dependency on texttable for displaying the summary table text
PyStaticConfiguration==0.9.0 PyYAML==3.11 argparse==1.3.0 aws-requests-auth==0.2.5 blist==1.3.6 boto==2.34.0 botocore==1.4.5 configparser>=3.3.0r2 croniter==0.3.8 elasticsearch==1.3.0 jira==0.32 jsonschema==2.2.0 mock==1.0.0 oauthlib==0.7.2 python-dateutil==2.4.0 requests==2.5.1 requests-oauthlib==0.4.2 simplejson==3.3.0 six==1.9.0 supervisor==3.1.2 tlslite==0.4.8 unittest2==0.8.0 urllib3==1.8.2 wsgiref==0.1.2
PyStaticConfiguration==0.9.0 PyYAML==3.11 argparse==1.3.0 aws-requests-auth==0.2.5 blist==1.3.6 boto==2.34.0 botocore==1.4.5 configparser>=3.3.0r2 croniter==0.3.8 elasticsearch==1.3.0 jira==0.32 jsonschema==2.2.0 mock==1.0.0 oauthlib==0.7.2 python-dateutil==2.4.0 requests==2.5.1 requests-oauthlib==0.4.2 simplejson==3.3.0 six==1.9.0 supervisor==3.1.2 texttable==0.8.4 tlslite==0.4.8 unittest2==0.8.0 urllib3==1.8.2 wsgiref==0.1.2
Update idna from 2.5 to 2.6
boto3==1.4.5 botocore==1.5.92 certifi==2017.7.27.1 chardet==3.0.4 dj-database-url==0.4.2 dj-static==0.0.6 Django==1.11.4 django-grappelli==2.10.1 django-haystack==2.6.1 django-linkcheck==1.4 django-s3-folder-storage==0.5 django-storages==1.6.5 docutils==0.14 elasticsearch==2.4.1 futures==3.1.1 gunicorn==19.7.1 idna==2.5 jmespath==0.9.3 MySQL-python==1.2.5 newrelic==2.90.0.75 psycopg2==2.7.3 python-dateutil==2.6.1 python-ptrace==0.9.2 pyuploadcare==2.2.1 requests==2.18.3 rollbar==0.13.12 s3transfer==0.1.10 simplejson==3.11.1 six==1.10.0 static3==0.7.0 urllib3==1.22 Whoosh==2.7.4
boto3==1.4.5 botocore==1.5.92 certifi==2017.7.27.1 chardet==3.0.4 dj-database-url==0.4.2 dj-static==0.0.6 Django==1.11.4 django-grappelli==2.10.1 django-haystack==2.6.1 django-linkcheck==1.4 django-s3-folder-storage==0.5 django-storages==1.6.5 docutils==0.14 elasticsearch==2.4.1 futures==3.1.1 gunicorn==19.7.1 idna==2.6 jmespath==0.9.3 MySQL-python==1.2.5 newrelic==2.90.0.75 psycopg2==2.7.3 python-dateutil==2.6.1 python-ptrace==0.9.2 pyuploadcare==2.2.1 requests==2.18.3 rollbar==0.13.12 s3transfer==0.1.10 simplejson==3.11.1 six==1.10.0 static3==0.7.0 urllib3==1.22 Whoosh==2.7.4
Bump lxml from 4.5.0 to 4.6.2
appdirs==1.4.3 attrs==19.3.0 cached-property==1.5.1 cachetools==4.1.0 certifi==2020.4.5.1 chardet==3.0.4 defusedxml==0.6.0 google-auth==1.13.1 google-auth-oauthlib==0.4.1 googleads==23.0.1 idna==2.9 isodate==0.6.0 lxml==4.5.0 oauthlib==3.1.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 pytz==2019.3 PyYAML==5.3.1 requests==2.23.0 requests-oauthlib==1.3.0 requests-toolbelt==0.9.1 rsa==4.0 six==1.14.0 urllib3==1.25.8 xmltodict==0.12.0 zeep==3.4.0
appdirs==1.4.3 attrs==19.3.0 cached-property==1.5.1 cachetools==4.1.0 certifi==2020.4.5.1 chardet==3.0.4 defusedxml==0.6.0 google-auth==1.13.1 google-auth-oauthlib==0.4.1 googleads==23.0.1 idna==2.9 isodate==0.6.0 lxml==4.6.2 oauthlib==3.1.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 pytz==2019.3 PyYAML==5.3.1 requests==2.23.0 requests-oauthlib==1.3.0 requests-toolbelt==0.9.1 rsa==4.0 six==1.14.0 urllib3==1.25.8 xmltodict==0.12.0 zeep==3.4.0
Use OWSLib < 0.19.0 for Python 2 support
OWSLib>=0.8.3 lxml>=3.2.1 cf_units>=2 requests>=2.2.1 isodate>=0.5.4 Jinja2>=2.7.3 setuptools>=15.0 pygeoif>=0.6 netCDF4>=1.4.0 regex>=2017.07.28 pendulum>=1.2.4 # functools.lru_cache first appears in Python 3.2, use this for other # versions functools32==3.2.3-2; python_version < '3.2' #conda: functools32 (only python=2)
OWSLib>=0.8.3,<0.19.0 lxml>=3.2.1 cf_units>=2 requests>=2.2.1 isodate>=0.5.4 Jinja2>=2.7.3 setuptools>=15.0 pygeoif>=0.6 netCDF4>=1.4.0 regex>=2017.07.28 pendulum>=1.2.4 # functools.lru_cache first appears in Python 3.2, use this for other # versions functools32==3.2.3-2; python_version < '3.2' #conda: functools32 (only python=2)
Update testinfra from 1.7.1 to 1.8.0
docker==2.5.1 molecule==1.25.0 pytest==3.2.2 python-vagrant==0.5.15 testinfra==1.7.1 tox==2.8.2
docker==2.5.1 molecule==1.25.0 pytest==3.2.2 python-vagrant==0.5.15 testinfra==1.8.0 tox==2.8.2
Update coverage from 4.4 to 4.4.1
pysingleton==0.2.1 colorful==0.4.0 docopt==0.6.2 ipython==5.3.0 tag-expressions>=1.0.0 lxml==3.7.3 parse==1.8.0 coverage==4.4 PyYAML==3.12
pysingleton==0.2.1 colorful==0.4.0 docopt==0.6.2 ipython==5.3.0 tag-expressions>=1.0.0 lxml==3.7.3 parse==1.8.0 coverage==4.4.1 PyYAML==3.12
Bump urllib3 from 1.22 to 1.24.2
certifi==2017.7.27.1 chardet==3.0.4 idna==2.6 lxml==4.0.0 python-utils==2.2.0 requests==2.18.4 six==1.11.0 tqdm==4.17.1 unidecode==0.04.21 urllib3==1.22 peewee==3.5.2
certifi==2017.7.27.1 chardet==3.0.4 idna==2.6 lxml==4.0.0 python-utils==2.2.0 requests==2.18.4 six==1.11.0 tqdm==4.17.1 unidecode==0.04.21 urllib3==1.24.2 peewee==3.5.2
Update copyright to include DocumentCloud & IRE
Copyright (c) 2015 Nathan Stitt MIT License 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.
MIT License Copyright (c) 2015 Nathan Stitt, Ted Han, DocumentCloud, Investigative Reporters & Editors 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.
Update license text for github autodetection
Copyright (c) 2009-2018, ZeroC, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name ZeroC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY ZEROC 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 ZEROC 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.
BSD 3-Clause License Copyright (c) 2009-2018, ZeroC, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 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.
Update dependency google-auth to v1.26.0
cachetools==4.2.1 certifi==2020.12.5 chardet==4.0.0 coverage==5.4 google-api-core==1.26.0 google-api-python-client==1.12.8 google-auth==1.25.0 google-auth-httplib2==0.0.4 google-auth-oauthlib==0.4.2 googleapis-common-protos==1.52.0 httplib2==0.19.0 idna==2.10 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.14.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 python-slugify==4.0.1 pytube3==9.6.4 pytz==2020.5 requests==2.25.1 requests-oauthlib==1.3.0 rsa==4.7 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.26.3
cachetools==4.2.1 certifi==2020.12.5 chardet==4.0.0 coverage==5.4 google-api-core==1.26.0 google-api-python-client==1.12.8 google-auth==1.26.0 google-auth-httplib2==0.0.4 google-auth-oauthlib==0.4.2 googleapis-common-protos==1.52.0 httplib2==0.19.0 idna==2.10 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.14.0 pyasn1==0.4.8 pyasn1-modules==0.2.8 python-slugify==4.0.1 pytube3==9.6.4 pytz==2020.5 requests==2.25.1 requests-oauthlib==1.3.0 rsa==4.7 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.26.3
Add another class to the main testcase
# NAME Xandra Best # MAJORS CSCI MATH # CONCENTRATIONS STAT MUSIC Physics # COURSES PHIL251A REL296A rel 296b CSCI251 stat 110 THEAT398 writ211 writ111q # LABS PHYS131C
# NAME Xandra Best # MAJORS CSCI MATH # CONCENTRATIONS STAT MUSIC Physics # COURSES PHIL251A REL296A rel 296b Religion 121L CSCI251 stat 110 THEAT398 writ211 writ111q # LABS PHYS131C
Fix pinning of Sphinx and pytest for Python 2.7 compatibility
pip==19.2.1 bumpversion==0.5.3 wheel==0.33.4 watchdog==0.9.0 flake8==3.7.8 tox==3.13.2 coverage==4.5.3 Sphinx==2.1.2 cryptography==2.7 PyYAML==5.1.1 pytest==5.0.1
pip==19.2.1 bumpversion==0.5.3 wheel==0.33.4 watchdog==0.9.0 flake8==3.7.8 tox==3.13.2 coverage==4.5.3 Sphinx>=1.8.5,<1.99999 cryptography==2.7 PyYAML==5.1.1 pytest>=4.3.1,<5
Update pytest from 3.2.2 to 3.4.2
-r requirements.txt coverage==4.5.1 flaky==3.4.0 isort==4.3.4 mock==2.0.0 prospector==0.12.7 pyflakes==1.6.0 pytest==3.2.2 pylint==1.7.2 tox==2.9.1
-r requirements.txt coverage==4.5.1 flaky==3.4.0 isort==4.3.4 mock==2.0.0 prospector==0.12.7 pyflakes==1.6.0 pytest==3.4.2 pylint==1.7.2 tox==2.9.1
Update requirements to work on Heroku
Django==1.7 dj-static==0.0.6 django-endless-pagination==2.0 django-gravatar2==1.1.3 Pillow==2.5.3 psycopg2==2.5.3 pytz==2014.4 git+http://github.com/nlhkabu/Django-parsley@master # Testing factory-boy==2.4.1 # Mocks PyYAML==3.11 # Fixtures selenium behave==1.2.4 git+http://github.com/rwillmer/django-behave@master parse splinter # Deployment uWSGI==2.0.7
Django==1.7 dj-static==0.0.6 django-endless-pagination==2.0 django-gravatar2==1.1.3 Pillow==2.5.3 psycopg2==2.5.3 pytz==2014.4 git+git://github.com/nlhkabu/Django-parsley.git@master # Testing factory-boy==2.4.1 # Mocks PyYAML==3.11 # Fixtures selenium behave==1.2.4 git+git://github.com/rwillmer/django-behave.git@master parse splinter # Deployment uWSGI==2.0.7
Update python-magic from 0.4.22 to 0.4.24
bleach==3.3.0 Django==2.2.24 # pyup: <2.3 django-allauth==0.44.0 django-autoslug==1.9.8 django-background-tasks==1.2.5 django-ckeditor==6.1.0 django-enumfield==2.0.2 django-filter==2.4.0 django-multiselectfield==0.1.12 django-widget-tweaks==1.4.8 djangorestframework==3.12.4 easy-thumbnails==2.7.1 html5lib==1.1 jsonfield==3.1.0 psycopg2-binary==2.8.6 python-dateutil==2.8.1 python-magic==0.4.22 rules==2.2 XlsxWriter==1.4.2
bleach==3.3.0 Django==2.2.24 # pyup: <2.3 django-allauth==0.44.0 django-autoslug==1.9.8 django-background-tasks==1.2.5 django-ckeditor==6.1.0 django-enumfield==2.0.2 django-filter==2.4.0 django-multiselectfield==0.1.12 django-widget-tweaks==1.4.8 djangorestframework==3.12.4 easy-thumbnails==2.7.1 html5lib==1.1 jsonfield==3.1.0 psycopg2-binary==2.8.6 python-dateutil==2.8.1 python-magic==0.4.24 rules==2.2 XlsxWriter==1.4.2
Remove boost python from turbodbc build configuration
find_package(Boost REQUIRED COMPONENTS python system) include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) find_package(PythonLibs 2.7 REQUIRED) include_directories(SYSTEM ${PYTHON_INCLUDE_DIRS}) find_package(odbc REQUIRED) include_directories(SYSTEM ${Odbc_INCLUDE_DIR}) include_directories(Library) include_directories(../cpp_odbc/Library) add_subdirectory(Library) if(BUILD_TESTING) add_subdirectory(Test) endif()
find_package(Boost REQUIRED COMPONENTS system) include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) find_package(PythonLibs 2.7 REQUIRED) include_directories(SYSTEM ${PYTHON_INCLUDE_DIRS}) find_package(odbc REQUIRED) include_directories(SYSTEM ${Odbc_INCLUDE_DIR}) include_directories(Library) include_directories(../cpp_odbc/Library) add_subdirectory(Library) if(BUILD_TESTING) add_subdirectory(Test) endif()
Update pMetro to 0.0.15 (109)
Categories:Navigation License:GPLv3+ Web Site: Source Code:https://github.com/Utyff/pMetro Issue Tracker:https://github.com/Utyff/pMetro/issues Auto Name:pMetro Summary:Calculate shortest metro routes in Russia Description: You can load ~200 metro maps of (mostly russian) cities available from the [http://pmetro.su pMetro project]. After that you can build shortest route and calculate trip time using subway and other city transports. There is additional information for stations and 2D schemas (double tap for show). . Repo Type:git Repo:https://github.com/Utyff/pMetro Build:0.0.12 alpha,105 commit=0.0.12 subdir=app gradle=yes Build:0.0.13,107 commit=0.0.13 subdir=app gradle=yes Build:0.0.14,108 commit=0.0.14 subdir=app gradle=yes Auto Update Mode:Version %v Update Check Mode:Tags Current Version:0.0.14 Current Version Code:108
Categories:Navigation License:GPLv3+ Web Site: Source Code:https://github.com/Utyff/pMetro Issue Tracker:https://github.com/Utyff/pMetro/issues Auto Name:pMetro Summary:Calculate shortest metro routes in Russia Description: You can load ~200 metro maps of (mostly russian) cities available from the [http://pmetro.su pMetro project]. After that you can build shortest route and calculate trip time using subway and other city transports. There is additional information for stations and 2D schemas (double tap for show). . Repo Type:git Repo:https://github.com/Utyff/pMetro Build:0.0.12 alpha,105 commit=0.0.12 subdir=app gradle=yes Build:0.0.13,107 commit=0.0.13 subdir=app gradle=yes Build:0.0.14,108 commit=0.0.14 subdir=app gradle=yes Build:0.0.15,109 commit=0.0.15 subdir=app gradle=yes Auto Update Mode:Version %v Update Check Mode:Tags Current Version:0.0.15 Current Version Code:109
Update Pygments package to 2.7.1
# Core packages python-dotenv==0.14.0 # Read environment variables from .env Flask==1.1.2 # Web microframework uWSGI==2.0.19.1 # Application server syspath==2.0.2 # Modify paths # Features feedgen==0.9.0 # Generate atom feeds flask-sitemap==0.3.0 # Web sitemaps markdown2==2.3.9 # Markdown formatting Pygments==2.6.1 # Syntax highlighting support pytz==2020.1 # Timezone support # Monitoring/tracking/logging blinker==1.4 # Dependency of rollbar newrelic==5.20.1.150 # Website monitoring rollbar==0.15.1 # rollbar.com error logging varsnap==1.3.1 # Test discovery
# Core packages python-dotenv==0.14.0 # Read environment variables from .env Flask==1.1.2 # Web microframework uWSGI==2.0.19.1 # Application server syspath==2.0.2 # Modify paths # Features feedgen==0.9.0 # Generate atom feeds flask-sitemap==0.3.0 # Web sitemaps markdown2==2.3.9 # Markdown formatting Pygments==2.7.1 # Syntax highlighting support pytz==2020.1 # Timezone support # Monitoring/tracking/logging blinker==1.4 # Dependency of rollbar newrelic==5.20.1.150 # Website monitoring rollbar==0.15.1 # rollbar.com error logging varsnap==1.3.1 # Test discovery
Update pytest from 6.1.1 to 6.1.2
ansible-lint==4.3.0 docker==4.3.1 flake8==3.8.4 molecule==3.0.8 pytest==6.1.1 testinfra==5.3.1 tox==3.20.1
ansible-lint==4.3.0 docker==4.3.1 flake8==3.8.4 molecule==3.0.8 pytest==6.1.2 testinfra==5.3.1 tox==3.20.1
Upgrade dependency tqdm to ==4.11.0
argcomplete==1.7.0 base58==0.2.4 botocore==1.4.93 boto3==1.4.3 docutils>=0.12 futures==3.0.5 hjson==2.0.2 jmespath==0.9.0 kappa==0.6.0 lambda-packages==0.11.0 python-dateutil==2.6.0 python-slugify==1.2.1 PyYAML==3.12 requests>=2.10.0 six==1.10.0 toml==0.9.2 tqdm==4.10.0 troposphere>=1.9.0 Werkzeug==0.11.15 wheel==0.29.0 wsgi-request-logger==0.4.6
argcomplete==1.7.0 base58==0.2.4 botocore==1.4.93 boto3==1.4.3 docutils>=0.12 futures==3.0.5 hjson==2.0.2 jmespath==0.9.0 kappa==0.6.0 lambda-packages==0.11.0 python-dateutil==2.6.0 python-slugify==1.2.1 PyYAML==3.12 requests>=2.10.0 six==1.10.0 toml==0.9.2 tqdm==4.11.0 troposphere>=1.9.0 Werkzeug==0.11.15 wheel==0.29.0 wsgi-request-logger==0.4.6
Update dependency google-auth to v1.34.0
Flask==2.0.1 gunicorn==20.1.0 requests==2.26.0 structlog==21.1.0 google-auth==1.33.1
Flask==2.0.1 gunicorn==20.1.0 requests==2.26.0 structlog==21.1.0 google-auth==1.34.0
Update dependency requests to v2.27.1
aiohttp==3.7.4 aiosqlite==0.17.0 discord.py==1.7.3 feedparser==6.0.1 flake8==3.8.3 html2text==2020.1.16 in-place==0.4.0 mypy==0.780 pylint==1.6.5 python-dateutil==2.8.1 pytz==2020.5 requests==2.23.0 six==1.15.0 ws4py==0.5.1
aiohttp==3.7.4 aiosqlite==0.17.0 discord.py==1.7.3 feedparser==6.0.1 flake8==3.8.3 html2text==2020.1.16 in-place==0.4.0 mypy==0.780 pylint==1.6.5 python-dateutil==2.8.1 pytz==2020.5 requests==2.27.1 six==1.15.0 ws4py==0.5.1
Update to latest raw-data stable release
Django==1.10 -e git+https://github.com/california-civic-data-coalition/django-calaccess-raw-data.git@HEAD#egg=django_calaccess_raw_data psycopg2==2.6.1 boto3==1.4 django-storages django-bakery==0.8.9 six Fabric flake8 coveralls configparser
Django==1.10 django-calaccess-raw-data==1.4 psycopg2==2.6.1 boto3==1.4 django-storages django-bakery==0.8.9 six Fabric flake8 coveralls configparser
Update dependency PyMySQL to v0.10.1
falcon==1.2.0 pytest==3.1.3 PyMySQL==0.7.11 -e git://github.com/zzzeek/sqlalchemy.git@e6555083d41accf983e5e8045956779c4fbc97a3#egg=SQLAlchemy
falcon==1.2.0 pytest==3.1.3 PyMySQL==0.10.1 -e git://github.com/zzzeek/sqlalchemy.git@e6555083d41accf983e5e8045956779c4fbc97a3#egg=SQLAlchemy
Update django-extensions from 1.9.1 to 1.9.6
# These requirements are only necessary when developing on Oscar. # development Werkzeug==0.12.2 django-debug-toolbar==1.8 django-extensions==1.9.1 psycopg2==2.7.3.1 # Sandbox Pillow==4.2.1 Whoosh==2.7.4 django-environ==0.4.4 django-redis==4.8.0 pysolr==3.6.0 redis==2.10.6 requests==2.18.4 uWSGI==2.0.15 whitenoise==3.3.1 # Linting flake8==3.4.1 flake8-debugger==1.4.0 flake8-blind-except==0.1.1 isort==4.2.15 # Helpers pyprof2calltree==1.4.3 ipdb==0.10.3 ipython==5.5.0 transifex-client==0.12.4 # Country data pycountry==17.9.23
# These requirements are only necessary when developing on Oscar. # development Werkzeug==0.12.2 django-debug-toolbar==1.8 django-extensions==1.9.6 psycopg2==2.7.3.1 # Sandbox Pillow==4.2.1 Whoosh==2.7.4 django-environ==0.4.4 django-redis==4.8.0 pysolr==3.6.0 redis==2.10.6 requests==2.18.4 uWSGI==2.0.15 whitenoise==3.3.1 # Linting flake8==3.4.1 flake8-debugger==1.4.0 flake8-blind-except==0.1.1 isort==4.2.15 # Helpers pyprof2calltree==1.4.3 ipdb==0.10.3 ipython==5.5.0 transifex-client==0.12.4 # Country data pycountry==17.9.23
Update flake8 from 3.7.9 to 3.8.1
# basis requests==2.23.0 envparse==0.2.0 # json validation (inspector) jsonschema==3.2.0 # for version comparison semver==2.10.0 # to fix connection issues PyOpenSSL==19.1.0; python_version <= '2.7' # testing pytest==5.4.2 betamax==0.8.1 coverage<=4.5.99 pytest-cov==2.8.1 coveralls==2.0.0 # documentation Sphinx==3.0.3 nbsphinx==0.7.0 # data science # not needed for local use # jupyter==1.0.0 # matplotlib==3.1.1; python_version >= '3.6' # integration tox==3.15.0 # code style flake8==3.7.9 pydocstyle==5.0.2 mypy==0.770; python_version >= '3.4' pre-commit==2.3.0 # for package management (uploads) twine>=3.0.0; python_version >= '3.6' twine==3.1.1; python_version <= '3.5.99'
# basis requests==2.23.0 envparse==0.2.0 # json validation (inspector) jsonschema==3.2.0 # for version comparison semver==2.10.0 # to fix connection issues PyOpenSSL==19.1.0; python_version <= '2.7' # testing pytest==5.4.2 betamax==0.8.1 coverage<=4.5.99 pytest-cov==2.8.1 coveralls==2.0.0 # documentation Sphinx==3.0.3 nbsphinx==0.7.0 # data science # not needed for local use # jupyter==1.0.0 # matplotlib==3.1.1; python_version >= '3.6' # integration tox==3.15.0 # code style flake8==3.8.1 pydocstyle==5.0.2 mypy==0.770; python_version >= '3.4' pre-commit==2.3.0 # for package management (uploads) twine>=3.0.0; python_version >= '3.6' twine==3.1.1; python_version <= '3.5.99'
Add markdown deux to reqs
BeautifulSoup biplist Django django-annoying django-appconf django-bcrypt django_compressor django-grappelli django-pagination django-taggit django-templatetag-sugar gunicorn johnny-cache lxml psycopg2 Pygments pysolr python-memcached python-postmark pyyaml South uuid versiontools Werkzeug git+https://github.com/toastdriven/django-haystack.git@master#egg=django-haystack hg+https://bitbucket.org/ubernostrum/django-registration#egg=django-registration git+https://github.com/toastdriven/django-tastypie.git#egg=django-tastypie
BeautifulSoup biplist Django django-annoying django-appconf django-bcrypt django_compressor django-grappelli django-markdown-deux django-pagination django-taggit django-templatetag-sugar gunicorn johnny-cache lxml psycopg2 Pygments pysolr python-memcached python-postmark pyyaml South uuid versiontools Werkzeug git+https://github.com/toastdriven/django-haystack.git@master#egg=django-haystack hg+https://bitbucket.org/ubernostrum/django-registration#egg=django-registration git+https://github.com/toastdriven/django-tastypie.git#egg=django-tastypie
Update django-model-utils from 2.6.1 to 3.0.0
coverage==4.3.4 dj-database-url==0.4.2 Django==1.10.6 django-cors-middleware==1.3.1 django-crispy-forms==1.6.1 django-filter==1.0.1 django-guardian==1.4.6 django-model-utils==2.6.1 djangorestframework==3.6.2 djangorestframework-jwt==1.8.0 djoser==0.5.4 gunicorn==19.7.0 psycopg2==2.7 PyJWT==1.4.2 pytz==2016.10 requests==2.13.0 requests-mock==1.1.0 six==1.10.0 whitenoise==3.3.0 faker==0.7.17 celery==4.0.2 django-celery-results==1.0.1 coveralls==1.1
coverage==4.3.4 dj-database-url==0.4.2 Django==1.10.6 django-cors-middleware==1.3.1 django-crispy-forms==1.6.1 django-filter==1.0.1 django-guardian==1.4.6 django-model-utils==3.0.0 djangorestframework==3.6.2 djangorestframework-jwt==1.8.0 djoser==0.5.4 gunicorn==19.7.0 psycopg2==2.7 PyJWT==1.4.2 pytz==2016.10 requests==2.13.0 requests-mock==1.1.0 six==1.10.0 whitenoise==3.3.0 faker==0.7.17 celery==4.0.2 django-celery-results==1.0.1 coveralls==1.1
Upgrade gunicorn to latest 19.3 - direct log output to docker
# GDAL==1.10.0 Pygments==1.6 Whoosh==2.5.5 argparse==1.2.1 bottle==0.11.6 gunicorn==19.0 # setproctitle==1.1.8 wsgiref==0.1.2
# GDAL==1.10.0 Pygments==1.6 Whoosh==2.5.5 argparse==1.2.1 bottle==0.11.6 gunicorn==19.3 # setproctitle==1.1.8 wsgiref==0.1.2
Update fontparts from 0.10.2 to 0.10.4
afdko==3.7.1 appdirs==1.4.4 attrs==21.4.0 black==21.12b0 booleanOperations==0.9.0 Brotli==1.0.9 click==8.0.3 cu2qu==1.6.7.post1 defcon==0.10.0 fontMath==0.9.1 fontParts==0.10.2 fontPens==0.2.4 fonttools==4.28.5 fs==2.4.14 lxml==4.7.1 MutatorMath==3.0.1 pathspec>=0.9.0 Pillow==9.0.0 psautohint==2.3.1 pyclipper==1.3.0.post2 pytz==2021.3 regex==2021.11.10 scour==0.38.2 six==1.16.0 toml==0.10.2 typed-ast>=1.4.2 ufonormalizer==0.6.1 ufoProcessor==1.9.0 unicodedata2==14.0.0 zopfli==0.1.9
afdko==3.7.1 appdirs==1.4.4 attrs==21.4.0 black==21.12b0 booleanOperations==0.9.0 Brotli==1.0.9 click==8.0.3 cu2qu==1.6.7.post1 defcon==0.10.0 fontMath==0.9.1 fontParts==0.10.4 fontPens==0.2.4 fonttools==4.28.5 fs==2.4.14 lxml==4.7.1 MutatorMath==3.0.1 pathspec>=0.9.0 Pillow==9.0.0 psautohint==2.3.1 pyclipper==1.3.0.post2 pytz==2021.3 regex==2021.11.10 scour==0.38.2 six==1.16.0 toml==0.10.2 typed-ast>=1.4.2 ufonormalizer==0.6.1 ufoProcessor==1.9.0 unicodedata2==14.0.0 zopfli==0.1.9
Update tox from 2.9.1 to 3.0.0
molecule==2.12.1 pytest==3.4.2 python-vagrant==0.5.15 testinfra==1.11.1 tox==2.9.1
molecule==2.12.1 pytest==3.4.2 python-vagrant==0.5.15 testinfra==1.11.1 tox==3.0.0
Add OSTF dependency to requirement-eggs.txt file
Fabric==1.7.0 Jinja2==2.7 Paste==1.7.5.1 PyYAML==3.10 SQLAlchemy==0.7.8 amqplib==1.0.2 anyjson==0.3.1 argparse==1.2.1 decorator==3.4.0 distribute==0.7.3 eventlet==0.9.17 fysom==1.0.11 greenlet==0.4.0 hacking==0.7 jsonschema==2.0.0 kombu==2.1.8 netaddr==0.7.10 netifaces==0.8 nose2==0.4.1 nose==1.1.2 ordereddict==1.1 pbr==0.5.21 pip==1.2.1 prettytable==0.6.1 psycopg2==2.4.6 pycrypto==2.6 python-ceilometerclient==1.0.6 python-heatclient==0.2.4 python-muranoclient==0.2 requests==1.1.0 simplejson==2.6.2 six==1.1.0 tornado==3.0 uWSGI==1.9.18.2 ujson==1.33 web.py==0.37 wsgilog==0.3 wsgiref==0.1.2
Fabric==1.7.0 Jinja2==2.7 Paste==1.7.5.1 PyYAML==3.10 SQLAlchemy==0.7.8 amqplib==1.0.2 anyjson==0.3.1 argparse==1.2.1 decorator==3.4.0 distribute==0.7.3 eventlet==0.9.17 fysom==1.0.11 greenlet==0.4.0 hacking==0.7 jsonschema==2.0.0 kombu==2.1.8 netaddr==0.7.10 netifaces==0.8 nose2==0.4.1 nose==1.1.2 ordereddict==1.1 oslo.config==1.1.1 pbr==0.5.21 pip==1.2.1 prettytable==0.6.1 psycopg2==2.4.6 pycrypto==2.6 python-ceilometerclient==1.0.6 python-cinderclient==1.0.6 python-heatclient==0.2.5 python-keystoneclient==0.4.1 python-muranoclient==0.2.11 python-novaclient==2.15.0 python-savannaclient==0.3 requests==1.1.0 simplejson==2.6.2 six==1.1.0 tornado==3.0 uWSGI==1.9.18.2 ujson==1.33 web.py==0.37 wsgilog==0.3 wsgiref==0.1.2
Add markdown requirement for site
Django==1.5.1 MySQL-python django-braces==1.0.0
Django==1.5.1 MySQL-python django-braces==1.0.0 django-markdown-deux==1.0.4
Update sqlalchemy from 1.2.2 to 1.2.3
django-filter==1.1.0 django-js-reverse==0.8.1 djangorestframework==3.7.7 django==1.11.10 # pyup: >=1.11,<2 six==1.11.0 colorlog==3.1.2 docopt==0.6.2 django-mptt==0.9.0 djangorestframework-csv==2.0.0 tqdm==4.19.5 # progress bars requests==2.18.4 cherrypy==13.0.1 # Temporarily pinning this until CherryPy stops depending on namespaced package, see #2971 # pyup: <13.1.0 iceqube==0.0.4 porter2stemmer==1.0 unicodecsv==0.14.1 metafone==0.5 le-utils==0.1.5 kolibri_exercise_perseus_plugin==0.7.4 jsonfield==2.0.2 morango==0.2.4 requests-toolbelt==0.8.0 clint==0.5.1 tzlocal==1.5.1 pytz==2018.3 python-dateutil==2.6.1 ifcfg==0.14 sqlalchemy==1.2.2 user-agents==1.1.0
django-filter==1.1.0 django-js-reverse==0.8.1 djangorestframework==3.7.7 django==1.11.10 # pyup: >=1.11,<2 six==1.11.0 colorlog==3.1.2 docopt==0.6.2 django-mptt==0.9.0 djangorestframework-csv==2.0.0 tqdm==4.19.5 # progress bars requests==2.18.4 cherrypy==13.0.1 # Temporarily pinning this until CherryPy stops depending on namespaced package, see #2971 # pyup: <13.1.0 iceqube==0.0.4 porter2stemmer==1.0 unicodecsv==0.14.1 metafone==0.5 le-utils==0.1.5 kolibri_exercise_perseus_plugin==0.7.4 jsonfield==2.0.2 morango==0.2.4 requests-toolbelt==0.8.0 clint==0.5.1 tzlocal==1.5.1 pytz==2018.3 python-dateutil==2.6.1 ifcfg==0.14 sqlalchemy==1.2.3 user-agents==1.1.0
Use HTTP for requirements so they get installed into system site packages, and not `PIP_SRC`.
-e git+https://github.com/ixc/django-dynamic-fixture.git#egg=django-dynamic-fixture -e git+https://github.com/pydanny-archive/django-wysiwyg.git#egg=django-wysiwyg django-icekit[api,brightcove,dev,django18,forms,project,search,test]
django-icekit[api,brightcove,dev,django18,forms,project,search,test] https://github.com/ixc/django-dynamic-fixture/archive/ixc/master.zip https://github.com/pydanny-archive/django-wysiwyg/archive/master.zip
Disable GCC7 new Wextra warning implicit-fallthrough
project (sndegd) cmake_minimum_required (VERSION 2.6) find_package(ALSA) link_directories(${ALSA_LIBRARIES}) include_directories(${ALSA_INCLUDE_DIRS}) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s -std=gnu99 -fno-strict-overflow -pedantic -Wall -Wextra -Wformat=2 -Wformat-nonliteral -Wformat-security -Wshadow -Wpointer-arith -Wmissing-prototypes -Wcast-qual -lm") if (WIN32) set(OSNAME "Win32") else() execute_process( COMMAND uname COMMAND tr "\n" " " COMMAND sed "s/ //" OUTPUT_VARIABLE OSNAME ) endif() if (NOT (${OSNAME} STREQUAL "Linux")) message("ndhc requires Linux. Patches are welcome. Consult README.") return() endif() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNK_USE_CAPABILITY") include_directories("${PROJECT_SOURCE_DIR}/ncmlib") add_subdirectory(ncmlib) file(GLOB SNDEGD_SRCS "*.c") add_executable(snd-egd ${SNDEGD_SRCS}) target_link_libraries(snd-egd ncmlib ${ALSA_LIBRARIES})
project (sndegd) cmake_minimum_required (VERSION 2.6) find_package(ALSA) link_directories(${ALSA_LIBRARIES}) include_directories(${ALSA_INCLUDE_DIRS}) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s -std=gnu99 -fno-strict-overflow -pedantic -Wall -Wextra -Wimplicit-fallthrough=0 -Wformat=2 -Wformat-nonliteral -Wformat-security -Wshadow -Wpointer-arith -Wmissing-prototypes -Wcast-qual -lm") if (WIN32) set(OSNAME "Win32") else() execute_process( COMMAND uname COMMAND tr "\n" " " COMMAND sed "s/ //" OUTPUT_VARIABLE OSNAME ) endif() if (NOT (${OSNAME} STREQUAL "Linux")) message("ndhc requires Linux. Patches are welcome. Consult README.") return() endif() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNK_USE_CAPABILITY") include_directories("${PROJECT_SOURCE_DIR}/ncmlib") add_subdirectory(ncmlib) file(GLOB SNDEGD_SRCS "*.c") add_executable(snd-egd ${SNDEGD_SRCS}) target_link_libraries(snd-egd ncmlib ${ALSA_LIBRARIES})
Update notes in preparation for release
=== 0.2.2 / 2011-04-11 * Minor enhancements: * Use LDFLAGS when activating recipes for cross-compilation. Closes #6 * Bugfixes: * Remove memoization of *_path helpers. Closes #7 === 0.2.1 / 2011-04-06 * Minor enhancements: * Provide MiniPortile#path to obtain full path to installation directory. Closes GH-5 === 0.2.0 / 2011-04-05 * Enhancements: * Improve tar detection * Improve and refactor configure_options * Detect configure_options changes. Closes GH-1 * Add recipe examples * Bugfixes: * MiniPortile#target can be changed now. Closes GH-2 * Always redirect tar output properly === 0.1.0 / 2011-03-08 * Initial release. Welcome to this world!
* Enhancements: * Use `gcc -v` to determine original host (platform) instead of Ruby one. * Deprecations: * Dropped support for Rubies older than 1.8.7 === 0.2.2 / 2011-04-11 * Minor enhancements: * Use LDFLAGS when activating recipes for cross-compilation. Closes #6 * Bugfixes: * Remove memoization of *_path helpers. Closes #7 === 0.2.1 / 2011-04-06 * Minor enhancements: * Provide MiniPortile#path to obtain full path to installation directory. Closes GH-5 === 0.2.0 / 2011-04-05 * Enhancements: * Improve tar detection * Improve and refactor configure_options * Detect configure_options changes. Closes GH-1 * Add recipe examples * Bugfixes: * MiniPortile#target can be changed now. Closes GH-2 * Always redirect tar output properly === 0.1.0 / 2011-03-08 * Initial release. Welcome to this world!
Update requests from 2.17.0 to 2.17.3
# Django stuff Django==1.10.7 dj-database-url==0.4.2 django-choices==1.5.0 django-extensions==1.7.9 django-storages==1.5.2 djangorestframework==3.6.3 whitenoise==3.3.0 # Allauth defusedxml==0.5.0 django-allauth==0.32.0 oauthlib==2.0.2 python3-openid==3.1.0 requests-oauthlib==0.8.0 # Github github3.py==1.0.0a4 uritemplate==3.0.0 uritemplate.py==3.0.2 # Misc boto==2.47.0 psycopg2==2.7.1 pytz==2017.2 requests==2.17.0 six==1.10.0 # Celery celery[redis]==4.0.2 amqp==2.1.4 billiard==3.5.0.2 kombu==4.0.2 redis==2.10.5 vine==1.1.3 # HTML processing beautifulsoup4==4.6.0 html2text==2016.9.19
# Django stuff Django==1.10.7 dj-database-url==0.4.2 django-choices==1.5.0 django-extensions==1.7.9 django-storages==1.5.2 djangorestframework==3.6.3 whitenoise==3.3.0 # Allauth defusedxml==0.5.0 django-allauth==0.32.0 oauthlib==2.0.2 python3-openid==3.1.0 requests-oauthlib==0.8.0 # Github github3.py==1.0.0a4 uritemplate==3.0.0 uritemplate.py==3.0.2 # Misc boto==2.47.0 psycopg2==2.7.1 pytz==2017.2 requests==2.17.3 six==1.10.0 # Celery celery[redis]==4.0.2 amqp==2.1.4 billiard==3.5.0.2 kombu==4.0.2 redis==2.10.5 vine==1.1.3 # HTML processing beautifulsoup4==4.6.0 html2text==2016.9.19
Update isort from 4.3.15 to 4.3.16
# Unit testing pytest==4.3.1 pytest-mock==1.10.2 coverage==4.5.3 mock==2.0.0 # Code style flake8==3.7.7 # black isort==4.3.15 pre-commit==1.14.4
# Unit testing pytest==4.3.1 pytest-mock==1.10.2 coverage==4.5.3 mock==2.0.0 # Code style flake8==3.7.7 # black isort==4.3.16 pre-commit==1.14.4
Update django from 1.11.5 to 1.11.6
# Bleeding edge Django django==1.11.5 # Configuration django-environ==0.4.4 whitenoise==3.3.0 # Forms django-braces==1.11.0 django-crispy-forms==1.6.1 # Models django-model-utils==3.0.0 # Images Pillow==4.2.1 # For user registration, either via email or social # Well-built with regular release cycles! django-allauth==0.33.0 # Python-PostgreSQL Database Adapter psycopg2==2.7.3.1 # Unicode slugification awesome-slugify==1.6.5 # Time zones support pytz==2017.2 # Your custom requirements go here django-bootstrap-breadcrumbs==0.8.2 django-bootstrap3==9.0.0 #django-bootstrap3-datetimepicker-2==2.4.2 git+git://github.com/blag/django-bootstrap3-datetimepicker.git@f8a78b231b75c331c143d5461456f663827a8af6 reportlab==3.4.0 lxml==4.0.0 django-recaptcha==1.3.1 django-taggit==0.22.1
# Bleeding edge Django django==1.11.6 # Configuration django-environ==0.4.4 whitenoise==3.3.0 # Forms django-braces==1.11.0 django-crispy-forms==1.6.1 # Models django-model-utils==3.0.0 # Images Pillow==4.2.1 # For user registration, either via email or social # Well-built with regular release cycles! django-allauth==0.33.0 # Python-PostgreSQL Database Adapter psycopg2==2.7.3.1 # Unicode slugification awesome-slugify==1.6.5 # Time zones support pytz==2017.2 # Your custom requirements go here django-bootstrap-breadcrumbs==0.8.2 django-bootstrap3==9.0.0 #django-bootstrap3-datetimepicker-2==2.4.2 git+git://github.com/blag/django-bootstrap3-datetimepicker.git@f8a78b231b75c331c143d5461456f663827a8af6 reportlab==3.4.0 lxml==4.0.0 django-recaptcha==1.3.1 django-taggit==0.22.1
Change the version list API documentations
DART 7 master DART 6 v6.6.1 DART 5 v5.1.6 DART 4 v4.3.7
DART 7 master DART 6 v6.6.1
Enable extra modules via MITK_PRIVATE_MODULES
SET(LIBPOSTFIX "Ext") SET(module_dirs SceneSerializationBase PlanarFigure ImageExtraction ImageStatistics MitkExt SceneSerialization QmitkExt DiffusionImaging GPGPU IGT CameraCalibration IGTUI RigidRegistration RigidRegistrationUI DeformableRegistration DeformableRegistrationUI OpenCVVideoSupport Overlays InputDevices ToFHardware ToFProcessing ToFUI ) SET(MITK_DEFAULT_SUBPROJECTS MITK-Modules) FOREACH(module_dir ${module_dirs}) ADD_SUBDIRECTORY(${module_dir}) ENDFOREACH()
SET(LIBPOSTFIX "Ext") SET(module_dirs SceneSerializationBase PlanarFigure ImageExtraction ImageStatistics MitkExt SceneSerialization QmitkExt DiffusionImaging GPGPU IGT CameraCalibration IGTUI RigidRegistration RigidRegistrationUI DeformableRegistration DeformableRegistrationUI OpenCVVideoSupport Overlays InputDevices ToFHardware ToFProcessing ToFUI ) SET(MITK_DEFAULT_SUBPROJECTS MITK-Modules) FOREACH(module_dir ${module_dirs}) ADD_SUBDIRECTORY(${module_dir}) ENDFOREACH() IF(MITK_PRIVATE_MODULES) FILE(GLOB all_subdirs RELATIVE ${MITK_PRIVATE_MODULES} ${MITK_PRIVATE_MODULES}/*) FOREACH(subdir ${all_subdirs}) STRING(FIND ${subdir} "." _result) IF(_result EQUAL -1) IF(EXISTS ${MITK_PRIVATE_MODULES}/${subdir}/CMakeLists.txt) MESSAGE(STATUS "Found private module ${subdir}") ADD_SUBDIRECTORY(${MITK_PRIVATE_MODULES}/${subdir} private_modules/${subdir}) ENDIF() ENDIF() ENDFOREACH() ENDIF(MITK_PRIVATE_MODULES)
Add kphotoalbum and bluemarble applet.
There are some applications/applets/plasmoids using Marble. They might be affected by changes of the Marble API. So it is good practice to check if the following applications compile and work after API changes: - extragear/graphics/digikam - playground/base/plasma/wallpapers/marble - playground/base/plasma/applets/contacts There is this link http://techbase.kde.org/Projects/Marble/MarbleUsedBy listing also applications not hosted in KDE svn.
There are some applications/applets/plasmoids using Marble. They might be affected by changes of the Marble API. So it is good practice to check if the following applications compile and work after API changes: - kdeplasma-addons/applets/bluemarble - extragear/graphics/digikam - extragear/graphics/kphotoalbum - playground/base/plasma/applets/contacts - playground/base/plasma/wallpapers/marble There is this link http://techbase.kde.org/Projects/Marble/MarbleUsedBy listing also applications not hosted in KDE svn.
Change to use develop branch of python-gnupg
--index-url https://pypi.python.org/simple/ -e 'git+https://github.com/pixelated/python-gnupg.git@key_extension_and_sign#egg=gnupg' pyasn1==0.1.9 requests==2.11.1 srp==1.0.6 whoosh==2.6.0 Twisted==16.1.1 -e 'git+https://0xacab.org/leap/leap_pycommon.git@master#egg=leap.common' -e 'git+https://0xacab.org/pixelated/bitmask-dev.git@development#egg=leap.bitmask' -e 'git+https://0xacab.org/pixelated/soledad.git@development#egg=leap.soledad.common&subdirectory=common/' -e 'git+https://0xacab.org/pixelated/soledad.git@development#egg=leap.soledad.client&subdirectory=client/' -e .
--index-url https://pypi.python.org/simple/ -e 'git+https://github.com/pixelated/python-gnupg.git@develop#egg=gnupg' pyasn1==0.1.9 requests==2.11.1 srp==1.0.6 whoosh==2.6.0 Twisted==16.1.1 -e 'git+https://0xacab.org/leap/leap_pycommon.git@master#egg=leap.common' -e 'git+https://0xacab.org/pixelated/bitmask-dev.git@development#egg=leap.bitmask' -e 'git+https://0xacab.org/pixelated/soledad.git@development#egg=leap.soledad.common&subdirectory=common/' -e 'git+https://0xacab.org/pixelated/soledad.git@development#egg=leap.soledad.client&subdirectory=client/' -e .
Add test expectations for WebKit failures.
// This file should almost always be empty. Normally Chromium test expectations // are found in // src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt // // Only add expectations here to temporarily suppress messages on the bots // until the changes can be landed upstream. BUG_HCLAM : svg/clip-path/clip-path-text-and-stroke.svg = CRASH PASS BUG_HCLAM WIN : svg/text/text-intro-05-t.svg = IMAGE+TEXT CRASH BUG_HCLAM LINUX : svg/text/text-intro-05-t.svg = IMAGE PASS
// This file should almost always be empty. Normally Chromium test expectations // are found in // src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt // // Only add expectations here to temporarily suppress messages on the bots // until the changes can be landed upstream. BUG_HCLAM : svg/clip-path/clip-path-text-and-stroke.svg = CRASH PASS BUG_HCLAM WIN : svg/text/text-intro-05-t.svg = IMAGE+TEXT CRASH TEXT BUG_HCLAM LINUX : svg/text/text-intro-05-t.svg = IMAGE PASS
Move back to 1.8.16 of Django - although the release notes mention the latter, it hasn't made it to pypi yet.
Django==1.8.17 psycopg2==2.6.1 ims_lti_py==0.6 requests==2.7.0 django-cached-authentication-middleware==0.2.1 django-crispy-forms oauthlib==0.7.2 ddt==1.0.0 lxml==3.4.4 boto==2.38.0 git+ssh://git@github.com/penzance/canvas_python_sdk.git@v0.9.1#egg=canvas-python-sdk==0.9.1 git+ssh://git@github.com/penzance/django-auth-lti.git@v0.7#egg=django-auth-lti==0.7
Django==1.8.16 psycopg2==2.6.1 ims_lti_py==0.6 requests==2.7.0 django-cached-authentication-middleware==0.2.1 django-crispy-forms oauthlib==0.7.2 ddt==1.0.0 lxml==3.4.4 boto==2.38.0 git+ssh://git@github.com/penzance/canvas_python_sdk.git@v0.9.1#egg=canvas-python-sdk==0.9.1 git+ssh://git@github.com/penzance/django-auth-lti.git@v0.7#egg=django-auth-lti==0.7
Bump numpy from 1.20.1 to 1.20.2
pytest==6.2.2 pytest-cov==2.11.1 numpy==1.20.1 ruamel.yaml==0.17.0 msgpack==1.0.2 tqdm==4.59.0 coverage==5.5 coveralls==3.0.1 pymongo==3.11.3 pycodestyle==2.7.0 mypy==0.812 pydocstyle==5.1.1 pydantic==1.8.1 flake8==3.9.0 black==20.8b1 pylint==2.7.2
pytest==6.2.2 pytest-cov==2.11.1 numpy==1.20.2 ruamel.yaml==0.17.0 msgpack==1.0.2 tqdm==4.59.0 coverage==5.5 coveralls==3.0.1 pymongo==3.11.3 pycodestyle==2.7.0 mypy==0.812 pydocstyle==5.1.1 pydantic==1.8.1 flake8==3.9.0 black==20.8b1 pylint==2.7.2
Set NonFreeNet since it promotes YT
Categories:Multimedia,Internet License:GPLv3+ Web Site:https://github.com/theScrabi/NewPipe/blob/HEAD/README.md Source Code:https://github.com/theScrabi/NewPipe Issue Tracker:https://github.com/theScrabi/NewPipe/issues Auto Name:NewPipe Summary:Lightweight YouTube frontend Description: Lightweight YouTube frontend that's supposed to be used without the proprietary YouTube-API or any of Google's (proprietary) play-services. NewPipe only parses the YouTube website in order to gain the information it needs. This a very early version of the app, so not all functionality is implemented, and there may still be a lot of bugs. But all in all it's doing what it is supposed to do. It makes it possible to watch YouTube videos. So don't be cruel to this app. It will improve... . Repo Type:git Repo:https://github.com/theScrabi/NewPipe Build:0.3,1 commit=v0.3 subdir=app gradle=yes Build:0.3.5,2 commit=d3cc5185290ff41e901cb0d55f0e4a0a52712159 subdir=app gradle=yes Build:0.4.1,4 commit=v0.4.1 subdir=app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.4.1 Current Version Code:4
AntiFeatures:NonFreeNet Categories:Multimedia,Internet License:GPLv3+ Web Site:https://github.com/theScrabi/NewPipe/blob/HEAD/README.md Source Code:https://github.com/theScrabi/NewPipe Issue Tracker:https://github.com/theScrabi/NewPipe/issues Auto Name:NewPipe Summary:Lightweight YouTube frontend Description: Lightweight YouTube frontend that's supposed to be used without the proprietary YouTube-API or any of Google's (proprietary) play-services. NewPipe only parses the YouTube website in order to gain the information it needs. This a very early version of the app, so not all functionality is implemented, and there may still be a lot of bugs. But all in all it's doing what it is supposed to do. It makes it possible to watch YouTube videos. So don't be cruel to this app. It will improve... . Repo Type:git Repo:https://github.com/theScrabi/NewPipe Build:0.3,1 commit=v0.3 subdir=app gradle=yes Build:0.3.5,2 commit=d3cc5185290ff41e901cb0d55f0e4a0a52712159 subdir=app gradle=yes Build:0.4.1,4 commit=v0.4.1 subdir=app gradle=yes Auto Update Mode:Version v%v Update Check Mode:Tags Current Version:0.4.1 Current Version Code:4
Update pytest from 3.5.1 to 3.6.0
pytest==3.5.1 selenium==3.12.0 pytest-selenium==1.12.0 pytest-html==1.17.0 pytest_base_url==1.4.1
pytest==3.6.0 selenium==3.12.0 pytest-selenium==1.12.0 pytest-html==1.17.0 pytest_base_url==1.4.1
Update dependency Pillow to v9.2.0
# https://pypi.org/project/google-cloud-documentai google-cloud-documentai==1.4.2 # https://pypi.org/project/google-auth google-auth==2.9.0 # https://pypi.org/project/Pillow Pillow==9.1.1 # https://pypi.org/project/flask Flask==2.1.2 # https://pypi.org/project/gunicorn gunicorn==20.1.0
# https://pypi.org/project/google-cloud-documentai google-cloud-documentai==1.4.2 # https://pypi.org/project/google-auth google-auth==2.9.0 # https://pypi.org/project/Pillow Pillow==9.2.0 # https://pypi.org/project/flask Flask==2.1.2 # https://pypi.org/project/gunicorn gunicorn==20.1.0
Include Integration Tests in projects to build
src/Nether.Data.MongoDB src/Nether.Web src/TestClients/FacebookUserTokenClient src/TestClients/IdentityServerTestClient src/PerformanceTests/LeaderboardLoadTest tests/Nether.Web.UnitTests
src/Nether.Data.MongoDB src/Nether.Web src/TestClients/FacebookUserTokenClient src/TestClients/IdentityServerTestClient src/PerformanceTests/LeaderboardLoadTest tests/Nether.Web.UnitTests tests/Nether.Web.IntegrationTests
Exclude ChromotingHostTest.Reconnect from TSAN bots.
# Following tests create real libjingle connections, and libjingle has # hardcoded timeouts, so these tests fail under TSan. JingleSessionTest.Connect JingleSessionTest.TestControlChannel JingleSessionTest.TestEventChannel JingleSessionTest.TestVideoChannel JingleSessionTest.TestVideoRtpChannel
# Following tests create real libjingle connections, and libjingle has # hardcoded timeouts, so these tests fail under TSan. JingleSessionTest.Connect JingleSessionTest.TestControlChannel JingleSessionTest.TestEventChannel JingleSessionTest.TestVideoChannel JingleSessionTest.TestVideoRtpChannel # Fails, http://crbug.com/77909 ChromotingHostTest.Reconnect
Update releases from 1.4.2 to 1.5.0
-r ./base.txt sphinx==1.7.4 alagitpull==0.0.20 releases==1.4.2 # updated from 1.3.1
-r ./base.txt sphinx==1.7.4 alagitpull==0.0.20 releases==1.5.0 # updated from 1.3.1
Update psycopg2-binary from 2.8.2 to 2.8.3
# Database psycopg2-binary==2.8.2 pip==19.1.1 bumpversion==0.5.3 wheel==0.33.4 watchdog==0.9.0 flake8==3.7.7 cryptography==2.7 tox==3.12.1 coverage==4.5.3 Sphinx==2.1.0 pytest-runner==5.1 pytest==4.6.2 pytest-cov==2.7.1 # miscellaneous sphinx_rtd_theme==0.4.3 pre-commit==1.17.0 python-dotenv[cli]==0.10.3
# Database psycopg2-binary==2.8.3 pip==19.1.1 bumpversion==0.5.3 wheel==0.33.4 watchdog==0.9.0 flake8==3.7.7 cryptography==2.7 tox==3.12.1 coverage==4.5.3 Sphinx==2.1.0 pytest-runner==5.1 pytest==4.6.2 pytest-cov==2.7.1 # miscellaneous sphinx_rtd_theme==0.4.3 pre-commit==1.17.0 python-dotenv[cli]==0.10.3
Update pandas from 1.4.3 to 1.4.4
gunicorn==20.1.0 backports-abc==0.5 bkcharts==0.2 bokeh==2.4.3 certifi==2022.6.15 chardet==5.0.0 click==8.1.3 Flask==2.2.2 idna==3.3 itsdangerous==2.1.2 Jinja2>=2.10.1 MarkupSafe==2.1.1 numpy==1.23.2 python-dateutil==2.8.2 pyyaml>=4.2b1 requests>=2.20.0 singledispatch==3.7.0 six==1.16.0 tornado==6.2 urllib3>=1.24.2 cachelib==0.9.0 pandas==1.4.3 scipy==1.9.0 astropy==5.1 matplotlib==3.5.2 git+https://github.com/mpld3/mpld3@master tables==3.7.0 apscheduler==3.9.1 PyAstronomy==0.18.0 airbrake==2.1.2
gunicorn==20.1.0 backports-abc==0.5 bkcharts==0.2 bokeh==2.4.3 certifi==2022.6.15 chardet==5.0.0 click==8.1.3 Flask==2.2.2 idna==3.3 itsdangerous==2.1.2 Jinja2>=2.10.1 MarkupSafe==2.1.1 numpy==1.23.2 python-dateutil==2.8.2 pyyaml>=4.2b1 requests>=2.20.0 singledispatch==3.7.0 six==1.16.0 tornado==6.2 urllib3>=1.24.2 cachelib==0.9.0 pandas==1.4.4 scipy==1.9.0 astropy==5.1 matplotlib==3.5.2 git+https://github.com/mpld3/mpld3@master tables==3.7.0 apscheduler==3.9.1 PyAstronomy==0.18.0 airbrake==2.1.2
Remove most of the version constrains
Flask==0.10.1 Flask-Assets==0.12 Flask-Babel==0.11.2 Flask-SQLAlchemy==2.1 Flask-Login==0.3.2 Jinja2==2.7.1 SQLAlchemy>=1.1 Werkzeug newrelic==2.36.0.30 pyproj==1.9.4 webassets==0.10.1 gunicorn==18.0 psycopg2 wsgiref==0.1.2; python_version <= '2.7' yuicompressor==2.4.8 Flask-Admin==1.1.0 Flask-Security==1.7.5 WTForms==2.0.2 sendgrid==1.4.0 python-dateutil==2.4.2 alembic==0.8.2 apscheduler==2.1.2 Flask-Compress==1.3.0 rauth==0.7.2 requests click six celery[redis] openpyxl
Flask Flask-Assets Flask-Babel Flask-SQLAlchemy Flask-Login<0.4 Jinja2 SQLAlchemy Werkzeug newrelic pyproj webassets gunicorn psycopg2 wsgiref; python_version <= '2.7' yuicompressor Flask-Admin Flask-Security<3 WTForms sendgrid<3 python-dateutil alembic apscheduler<3 Flask-Compress rauth requests click six celery[redis] openpyxl
Make all entities namespaced in the index
banal>=0.4.2 normality>=1.0.1 pantomime>=0.3.3 servicelayer[google]==1.8.1 servicelayer[amazon]==1.8.1 balkhash[leveldb]==1.0.0 balkhash[sql]==1.0.0 followthemoney==1.19.0 languagecodes>=1.0.5 psycopg2-binary grpcio>=1.21.1 google-cloud-vision==0.39.0 google-cloud-storage==1.19.0 # Development nose click>=7.0 # File format support dbf>=0.96.8 pdflib>=0.2.1 pymediainfo>=2.3.0 python-magic>=0.4.12 pypdf2>=1.26.0 rarfile>=3.0 xlrd>=1.2.0 pyicu>=2.0.3 openpyxl>=2.5.14 odfpy>=1.3.5 imapclient>=1.0.2 cchardet>=2.1.1 lxml>=4.2.1 olefile>=0.44 pillow>=5.1.0 vobject==0.9.6.1 msglite>=0.25.0 # Get rid of: # Used for LibreOffice converter service cryptography==2.6.1 requests[security]>=2.21.0
banal>=0.4.2 normality>=1.0.1 pantomime>=0.3.3 servicelayer[google]==1.8.1 servicelayer[amazon]==1.8.1 balkhash[leveldb]==1.0.0 balkhash[sql]==1.0.0 followthemoney==1.19.1 languagecodes>=1.0.5 psycopg2-binary grpcio>=1.21.1 google-cloud-vision==0.39.0 google-cloud-storage==1.19.0 # Development nose click>=7.0 # File format support dbf>=0.96.8 pdflib>=0.2.1 pymediainfo>=2.3.0 python-magic>=0.4.12 pypdf2>=1.26.0 rarfile>=3.0 xlrd>=1.2.0 pyicu>=2.0.3 openpyxl>=2.5.14 odfpy>=1.3.5 imapclient>=1.0.2 cchardet>=2.1.1 lxml>=4.2.1 olefile>=0.44 pillow>=5.1.0 vobject==0.9.6.1 msglite>=0.25.0 # Get rid of: # Used for LibreOffice converter service cryptography==2.6.1 requests[security]>=2.21.0
Update certifi from 2018.8.13 to 2018.8.24
beautifulsoup4==4.6.3 certifi==2018.8.13 chardet==3.0.4 idna==2.7 python-dateutil==2.7.3 requests==2.19.1 six==1.11.0 urllib3==1.22
beautifulsoup4==4.6.3 certifi==2018.8.24 chardet==3.0.4 idna==2.7 python-dateutil==2.7.3 requests==2.19.1 six==1.11.0 urllib3==1.22
Update dependency google-api-python-client to v1.9.2
cachetools==4.1.0 certifi==2020.4.5.2 chardet==3.0.4 coverage==5.1 google-api-core==1.20.0 google-api-python-client==1.9.1 google-auth==1.16.1 google-auth-httplib2==0.0.3 google-auth-oauthlib==0.4.1 googleapis-common-protos==1.52.0 httplib2==0.18.1 idna==2.9 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.12.2 pyasn1==0.4.8 pyasn1-modules==0.2.8 python-slugify==4.0.0 pytube3==9.6.4 pytz==2020.1 requests==2.23.0 requests-oauthlib==1.3.0 rsa==4.0 sitemap-python==0.2.0 six==1.15.0 text-unidecode==1.3 typing-extensions==3.7.4.2 uritemplate==3.0.1 urllib3==1.25.9
cachetools==4.1.0 certifi==2020.4.5.2 chardet==3.0.4 coverage==5.1 google-api-core==1.20.0 google-api-python-client==1.9.2 google-auth==1.16.1 google-auth-httplib2==0.0.3 google-auth-oauthlib==0.4.1 googleapis-common-protos==1.52.0 httplib2==0.18.1 idna==2.9 oauth2client==4.1.3 oauthlib==3.1.0 protobuf==3.12.2 pyasn1==0.4.8 pyasn1-modules==0.2.8 python-slugify==4.0.0 pytube3==9.6.4 pytz==2020.1 requests==2.23.0 requests-oauthlib==1.3.0 rsa==4.0 sitemap-python==0.2.0 six==1.15.0 text-unidecode==1.3 typing-extensions==3.7.4.2 uritemplate==3.0.1 urllib3==1.25.9
Update newrelic package to 6.4.1.158
# Core packages python-dotenv==0.17.1 # Read environment variables from .env Flask==2.0.1 # Web microframework uWSGI==2.0.19.1 # Application server syspath==2.0.4 # Modify paths # Features flask-sitemap==0.3.0 # Web sitemaps # Monitoring/tracking/logging blinker==1.4 # Dependency of rollbar newrelic==6.4.0.157 # Website monitoring rollbar==0.15.2 # rollbar.com error logging varsnap==1.4.3 # Test discovery
# Core packages python-dotenv==0.17.1 # Read environment variables from .env Flask==2.0.1 # Web microframework uWSGI==2.0.19.1 # Application server syspath==2.0.4 # Modify paths # Features flask-sitemap==0.3.0 # Web sitemaps # Monitoring/tracking/logging blinker==1.4 # Dependency of rollbar newrelic==6.4.1.158 # Website monitoring rollbar==0.15.2 # rollbar.com error logging varsnap==1.4.3 # Test discovery
Use security addons for requests
gensim==0.13.3 smart_open==1.4.0 numpy==1.11.2 requests==2.13.0
gensim==0.13.3 smart_open==1.4.0 numpy==1.11.2 requests[security]==2.13.0
Rename mqlocalsocketclf plugin --> LocalSocketServer.
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/../lib/molequeue/plugins) add_library(mqlocalsocketclf MODULE localsocketconnectionlistenerfactory.cpp) set_target_properties(mqlocalsocketclf PROPERTIES AUTOMOC TRUE) target_link_libraries(mqlocalsocketclf MoleQueueServerCore) install(TARGETS mqlocalsocketclf DESTINATION lib/molequeue/plugins)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/../lib/molequeue/plugins) add_library(LocalSocketServer MODULE localsocketconnectionlistenerfactory.cpp) set_target_properties(LocalSocketServer PROPERTIES AUTOMOC TRUE) target_link_libraries(LocalSocketServer MoleQueueServerCore) install(TARGETS LocalSocketServer DESTINATION lib/molequeue/plugins)
Add entry for the new changes.
JAKARTA COMMONS DAEMON (UNIX) CHANGELOG: Last modified at [$Date$] Changes with 1.0.1 * Allow enableassertions -ea (PR 304310). * Add -lpthread to LDFLAGS on Linux (PR 30177). * Add support for x86_64 (PR 27523). * Add support for Tru64 (PR 29465). * Remove the pid file when son exits correctly (PR 31614). * Add support for JVM-4.1.x on MAC OS X (part of PR 31613). * Prevent starting jsvc several times with the same pidfile (PR 33580). * Finish fixing 31613, automatic detection of JAVA_HOME and headers locations. * -wait and -stop parameters. * fix 34851. * Don't break when set_caps() failed and the user is unchanged (linux).
JAKARTA COMMONS DAEMON (UNIX) CHANGELOG: Last modified at [$Date$] Changes with 1.0.1 * Allow enableassertions -ea (PR 304310). * Add -lpthread to LDFLAGS on Linux (PR 30177). * Add support for x86_64 (PR 27523). * Add support for Tru64 (PR 29465). * Remove the pid file when son exits correctly (PR 31614). * Add support for JVM-4.1.x on MAC OS X (part of PR 31613). * Prevent starting jsvc several times with the same pidfile (PR 33580). * Finish fixing 31613, automatic detection of JAVA_HOME and headers locations. * -wait and -stop parameters. * fix 34851. * Don't break when set_caps() failed and the user is unchanged (linux). Changes with next-unreleased-yet version. * Add support for hp-ux.
Add a file with some remarks for setting up a zfs boot environment
# $FreeBSD$ Some remarks for setting up a zfs boot environment ZFS Boot sctructure: boot +-ROOT +-root [+-root2] [+-root3] zpool create -o mountpoint=none boot ... zpool set listsnapshots=on boot zfs create -o mountpoint=/mnt boot/ROOT zfs create boot/ROOT/root Fill -> /mnt/root cp /boot/zfs/zpool.cache /mnt/root/boot/zfs/zpool.cache zpool set bootfs=boot/ROOT/root boot set in /mnt/root/boot/loader.conf #ZFS mandatory zfs_load="YES" vfs.root.mountfrom="zfs:boot/ROOT/root" #ZFS optional vm.kmem_size="8G" vfs.zfs.arc_min="1G" vfs.zfs.arc_max="2G" vfs.zfs.prefetch_disable="1" vfs.zfs.zil_disable=1 vfs.zfs.zio.use_uma=0 #Power savings hw.pci.do_power_nodriver=3
Fix broken build due to missing attributes.inc
set(LLVM_TARGET_DEFINITIONS Options.td) tablegen(LLVM Options.inc -gen-opt-parser-defs) add_public_tablegen_target(WasmOptionsTableGen) add_lld_library(lldWasm Driver.cpp InputChunks.cpp InputFiles.cpp LTO.cpp MarkLive.cpp OutputSections.cpp SymbolTable.cpp Symbols.cpp Writer.cpp WriterUtils.cpp LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} BinaryFormat Core Demangle LTO MC Object Option Support LINK_LIBS lldCommon )
set(LLVM_TARGET_DEFINITIONS Options.td) tablegen(LLVM Options.inc -gen-opt-parser-defs) add_public_tablegen_target(WasmOptionsTableGen) if(NOT LLD_BUILT_STANDALONE) set(tablegen_deps intrinsics_gen) endif() add_lld_library(lldWasm Driver.cpp InputChunks.cpp InputFiles.cpp LTO.cpp MarkLive.cpp OutputSections.cpp SymbolTable.cpp Symbols.cpp Writer.cpp WriterUtils.cpp LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} BinaryFormat Core Demangle LTO MC Object Option Support LINK_LIBS lldCommon DEPENDS WasmOptionsTableGen ${tablegen_deps} )
Update django-extensions from 1.7.6 to 1.7.7
# Local development dependencies go here -r base.txt coverage==4.3.4 Sphinx==1.5.3 django-extensions==1.7.6 django-test-plus==1.0.17 factory-boy==2.8.1 django-debug-toolbar==1.7 # pytest! pytest-django==3.1.2 pytest-sugar==0.8.0
# Local development dependencies go here -r base.txt coverage==4.3.4 Sphinx==1.5.3 django-extensions==1.7.7 django-test-plus==1.0.17 factory-boy==2.8.1 django-debug-toolbar==1.7 # pytest! pytest-django==3.1.2 pytest-sugar==0.8.0
Add more needed developer tools.
gunicorn==19.3.0 httpie==0.9.2 Sphinx==1.3.1
flake8==2.4.1 gunicorn==19.3.0 httpie==0.9.2 nose==1.3.7 Sphinx==1.3.1
Update pytest from 4.4.0 to 4.4.1
codecov==2.0.15 flake8==3.7.7 mock==2.0.0 pytest==4.4.0 pytest-cov==2.6.1
codecov==2.0.15 flake8==3.7.7 mock==2.0.0 pytest==4.4.1 pytest-cov==2.6.1
Fix googletest path for latest NDK
cmake_minimum_required(VERSION 3.4.1) set(GOOGLETEST_ROOT ${ANDROID_NDK}/sources/third_party/googletest/googletest) add_library(gtest STATIC ${GOOGLETEST_ROOT}/src/gtest_main.cc ${GOOGLETEST_ROOT}/src/gtest-all.cc) target_include_directories(gtest PRIVATE ${GOOGLETEST_ROOT}) target_include_directories(gtest PUBLIC ${GOOGLETEST_ROOT}/include) include_directories(../include) add_executable(testOboe testUtilities.cpp ../src/common/Utilities.cpp) target_link_libraries(testOboe gtest)
cmake_minimum_required(VERSION 3.4.1) set(GOOGLETEST_ROOT ${ANDROID_NDK}/sources/third_party/googletest) add_library(gtest STATIC ${GOOGLETEST_ROOT}/src/gtest_main.cc ${GOOGLETEST_ROOT}/src/gtest-all.cc) target_include_directories(gtest PRIVATE ${GOOGLETEST_ROOT}) target_include_directories(gtest PUBLIC ${GOOGLETEST_ROOT}/include) include_directories(../include) add_executable(testOboe testUtilities.cpp ../src/common/Utilities.cpp) target_link_libraries(testOboe gtest)
Update cryptography from 2.0.2 to 2.0.3
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.3 cryptography==2.0.2 PyYAML==3.12 pytest==3.1.3 pytest-runner==2.11.1 requests>=2.1 PySocks>=1.5.8 pyOpenSSL>=0.14 selectors34>=1.1
pip==9.0.1 bumpversion==0.5.3 wheel==0.29.0 watchdog==0.8.3 flake8==3.4.1 tox==2.7.0 coverage==4.4.1 Sphinx==1.6.3 cryptography==2.0.3 PyYAML==3.12 pytest==3.1.3 pytest-runner==2.11.1 requests>=2.1 PySocks>=1.5.8 pyOpenSSL>=0.14 selectors34>=1.1
Use local version of decouple itself.
-e git+https://github.com/svenkreiss/BatchLikelihoodScan.git#egg=BatchLikelihoodScan -e git+https://github.com/svenkreiss/LHCHiggsCouplings.git#egg=LHCHiggsCouplings -e git+https://github.com/svenkreiss/PyROOTUtils.git#egg=PyROOTUtils -e git+https://github.com/svenkreiss/decouple.git#egg=Decouple multiprocessing>=2.6.2.1 numpy>=1.8.0 progressbar>=2.2 scipy>=0.13.3 wsgiref>=0.1.2
-e git+https://github.com/svenkreiss/BatchLikelihoodScan.git#egg=BatchLikelihoodScan -e git+https://github.com/svenkreiss/LHCHiggsCouplings.git#egg=LHCHiggsCouplings -e git+https://github.com/svenkreiss/PyROOTUtils.git#egg=PyROOTUtils multiprocessing>=2.6.2.1 numpy>=1.8.0 progressbar>=2.2 scipy>=0.13.3 -e .
Update CV of Just Player Plugin: Podcast to 1.1a (1010008)
Categories:Multimedia License:GPLv2 Web Site:http://justplayer-dev.blogspot.jp Source Code:https://bitbucket.org/yokmama/just-player-providers/src Issue Tracker:https://groups.google.com/group/justplayer-user Name:Just Player Plugin: Podcast Auto Name:PodcastProvider Summary:Podcast plugin for Just-Player Description: You can search for podcasts and subscribe to podcast urls in this app. Then choose Podcast as a data source in [[jp.co.kayo.android.localplayer]] and you can listen to the podcasts in Just-Player. . Repo Type:git Repo:https://bitbucket.org/yokmama/just-player-providers.git Build:1.1a,1010008 commit=1370e4cfe884 subdir=PodcastProvider Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.7 Current Version Code:1015002
Categories:Multimedia License:GPLv2 Web Site:http://justplayer-dev.blogspot.jp Source Code:https://bitbucket.org/yokmama/just-player-providers/src Issue Tracker:https://groups.google.com/group/justplayer-user Name:Just Player Plugin: Podcast Auto Name:PodcastProvider Summary:Podcast plugin for Just-Player Description: You can search for podcasts and subscribe to podcast urls in this app. Then choose Podcast as a data source in [[jp.co.kayo.android.localplayer]] and you can listen to the podcasts in Just-Player. . Repo Type:git Repo:https://bitbucket.org/yokmama/just-player-providers.git Build:1.1a,1010008 commit=1370e4cfe884 subdir=PodcastProvider Auto Update Mode:None Update Check Mode:RepoManifest Current Version:1.1a Current Version Code:1010008
Remove compatibility matrix from Installation page as it has its own page
============ Installation ============ .. default-domain:: mongodb The Ruby driver is bundled as a gem and is hosted on `Rubygems <https://rubygems.org/gems/mongo>`_. .. _ruby-driver-install: Install the gem --------------- The driver can be installed manually or with bundler. To install the gem manually: .. code-block:: sh gem install mongo To install the gem with bundler, include the following in your Gemfile: .. code-block:: ruby gem 'mongo', '~> 2.2' Note the following compatibility matrix to determine if the driver is supported on your Ruby version and MongoDB server version. .. list-table:: :header-rows: 1 :widths: 28 30 30 30 * - Ruby Version - MongoDB Server 2.4.x - MongoDB Server 2.6.x - MongoDB Server 3.0.x * - 1.8.x - No - No - No * - 1.9.x - Yes - Yes - Yes * - 2.0.x - Yes - Yes - Yes * - 2.1.x - Yes - Yes - Yes * - 2.2.x - Yes - Yes - Yes * - JRuby 1.7.x - Yes - Yes - Yes
============ Installation ============ .. default-domain:: mongodb The Ruby driver is bundled as a gem and is hosted on `Rubygems <https://rubygems.org/gems/mongo>`_. .. _ruby-driver-install: Install the gem --------------- The driver can be installed manually or with bundler. To install the gem manually: .. code-block:: sh gem install mongo To install the gem with bundler, include the following in your Gemfile: .. code-block:: ruby gem 'mongo', '~> 2.4'
Update to latest Cirq release.
# Runtime requirements for the python 3 version of cirq. cirq==0.7.0 numpy~=1.16 typing_extensions # Build and test requirements pybind11 pytest
# Runtime requirements for the python 3 version of cirq. cirq==0.8.0 numpy~=1.16 typing_extensions # Build and test requirements pybind11 pytest
Update pytest from 3.1.0 to 3.1.1
aiohttp==2.1.0 motor==1.1 pytest==3.1.0 pytest-aiohttp==0.1.3 pytest-asyncio==0.5.0 pytest-catchlog==1.2.2 pytest-cov==2.5.1 pytest-flakes==2.0.0 pytest-mock==1.6.0 yarl==0.10.2
aiohttp==2.1.0 motor==1.1 pytest==3.1.1 pytest-aiohttp==0.1.3 pytest-asyncio==0.5.0 pytest-catchlog==1.2.2 pytest-cov==2.5.1 pytest-flakes==2.0.0 pytest-mock==1.6.0 yarl==0.10.2
Update pytest from 3.4.0 to 3.4.2
pip==9.0.1 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.5.0 cryptography==2.1.4 tox==2.9.1 Sphinx==1.7.1 coverage==4.5.1 PyYAML==3.12 pytest-runner==4.0 pytest==3.4.0
pip==9.0.1 bumpversion==0.5.3 wheel==0.30.0 watchdog==0.8.3 flake8==3.5.0 cryptography==2.1.4 tox==2.9.1 Sphinx==1.7.1 coverage==4.5.1 PyYAML==3.12 pytest-runner==4.0 pytest==3.4.2
Update requests from 2.13.0 to 2.14.2
appdirs==1.4.3 asn1crypto==0.22.0 bcrypt==3.1.3 cffi==1.10.0 coverage==4.4 cryptography==1.8.1 greenlet==0.4.12 idna==2.5 motor==1.1 packaging==16.8 py==1.4.33 pyasn1==0.2.3 pycparser==2.17 pymongo==3.4.0 pyparsing==2.2.0 pytest==3.0.7 pytest-cov==2.4.0 requests==2.13.0 six==1.10.0 tornado==4.5.1
appdirs==1.4.3 asn1crypto==0.22.0 bcrypt==3.1.3 cffi==1.10.0 coverage==4.4 cryptography==1.8.1 greenlet==0.4.12 idna==2.5 motor==1.1 packaging==16.8 py==1.4.33 pyasn1==0.2.3 pycparser==2.17 pymongo==3.4.0 pyparsing==2.2.0 pytest==3.0.7 pytest-cov==2.4.0 requests==2.14.2 six==1.10.0 tornado==4.5.1
Update pytest from 3.7.2 to 3.7.3
aiohttp==3.4.0 flake8==3.5.0 pytest==3.7.2 pytest-asyncio==0.9.0 pytest-cov==2.5.1 pytest-runner==4.2 isort==4.3.4
aiohttp==3.4.0 flake8==3.5.0 pytest==3.7.3 pytest-asyncio==0.9.0 pytest-cov==2.5.1 pytest-runner==4.2 isort==4.3.4
Update dependency pytest to v4.6.3
beautifulsoup4==4.7.1 codecov==2.0.15 coverage==4.5.3 httplink==0.1.0 pytest==4.5.0 pytest-cov==2.7.1 requests==2.21.0 requests-mock==1.6.0
beautifulsoup4==4.7.1 codecov==2.0.15 coverage==4.5.3 httplink==0.1.0 pytest==4.6.3 pytest-cov==2.7.1 requests==2.21.0 requests-mock==1.6.0
Upgrade dependency pytz to ==2016.6
amqp==2.0.2 anyjson==0.3.3 beautifulsoup4==4.4.1 billiard==3.3.0.23 celery==3.1.23 Django==1.9.7 kombu==3.0.35 mysqlclient==1.3.7 pytz==2016.4 requests==2.10.0 uWSGI==2.0.13.1 django-q==0.7.18
amqp==2.0.2 anyjson==0.3.3 beautifulsoup4==4.4.1 billiard==3.3.0.23 celery==3.1.23 Django==1.9.7 kombu==3.0.35 mysqlclient==1.3.7 pytz==2016.6 requests==2.10.0 uWSGI==2.0.13.1 django-q==0.7.18
Resolve issue with meta info
Flask==0.10.1 Flask-Cors==1.9.0 pymongo==3.0.3 flower==0.7.2 gevent==1.0.1 uWSGI==2.0.7 supervisor==3.1.2 python-etcd==0.3.2 elasticsearch==1.2.0 future==0.15.0 pytz==2015.4 requests[security]==2.7.0 urllib3==1.11 https://github.com/totem/fleet-py/archive/master.tar.gz https://github.com/sukrit007/celery/archive/3.1.tar.gz https://github.com/totem/yoda-py/archive/develop.tar.gz https://github.com/totem/flask-hyperschema/archive/v0.1.1.tar.gz https://github.com/totem/totem-encrypt/archive/master.tar.gz https://github.com/dlitz/pycrypto/archive/v2.7a1.tar.gz
Flask==0.10.1 Flask-Cors==1.9.0 pymongo==3.0.3 flower==0.7.2 gevent==1.0.1 uWSGI==2.0.7 supervisor==3.1.2 python-etcd==0.3.2 elasticsearch==1.2.0 future==0.15.0 pytz==2015.4 requests[security]==2.7.0 urllib3==1.11 https://github.com/totem/fleet-py/archive/master.tar.gz https://github.com/sukrit007/celery/archive/3.1.tar.gz https://github.com/totem/yoda-py/archive/develop.tar.gz https://github.com/totem/flask-hyperschema/archive/v0.1.1.tar.gz https://github.com/totem/totem-encrypt/archive/master.tar.gz https://github.com/dlitz/pycrypto/archive/v2.7a1.tar.gz
Update django from 3.2.3 to 3.2.4
Celery==5.1.0 kombu==5.1.0 Django==3.2.3 factory-boy==3.2.0 djangorestframework==3.12.4 mock==4.0.3 six==1.16.0 jsonpickle==2.0.0 django_nose==1.4.7
Celery==5.1.0 kombu==5.1.0 Django==3.2.4 factory-boy==3.2.0 djangorestframework==3.12.4 mock==4.0.3 six==1.16.0 jsonpickle==2.0.0 django_nose==1.4.7
Update pytest-cookies from 0.2.0 to 0.3.0
cookiecutter==1.5.1 flake8==3.4.1 # pyup: != 2.6.0 sh==1.12.14 binaryornot==0.4.4 # Testing pytest==3.2.3 pep8==1.7.0 pyflakes==1.6.0 tox==2.9.1 pytest-cookies==0.2.0
cookiecutter==1.5.1 flake8==3.4.1 # pyup: != 2.6.0 sh==1.12.14 binaryornot==0.4.4 # Testing pytest==3.2.3 pep8==1.7.0 pyflakes==1.6.0 tox==2.9.1 pytest-cookies==0.3.0
Update ufolib2 from 0.12.1 to 0.13.0
# we use the official Brotli module on CPython and the CFFI-based # extension 'brotlipy' on PyPy brotli==1.0.9; platform_python_implementation != "PyPy" brotlicffi==1.0.9.2; platform_python_implementation == "PyPy" unicodedata2==13.0.0.post2; python_version < '3.9' and platform_python_implementation != "PyPy" scipy==1.7.3; platform_python_implementation != "PyPy" munkres==1.1.4; platform_python_implementation == "PyPy" zopfli==0.1.9 fs==2.4.14 skia-pathops==0.7.2; platform_python_implementation != "PyPy" # this is only required to run Tests/cu2qu/{ufo,cli}_test.py ufoLib2==0.12.1 pyobjc==8.1; sys_platform == "darwin"
# we use the official Brotli module on CPython and the CFFI-based # extension 'brotlipy' on PyPy brotli==1.0.9; platform_python_implementation != "PyPy" brotlicffi==1.0.9.2; platform_python_implementation == "PyPy" unicodedata2==13.0.0.post2; python_version < '3.9' and platform_python_implementation != "PyPy" scipy==1.7.3; platform_python_implementation != "PyPy" munkres==1.1.4; platform_python_implementation == "PyPy" zopfli==0.1.9 fs==2.4.14 skia-pathops==0.7.2; platform_python_implementation != "PyPy" # this is only required to run Tests/cu2qu/{ufo,cli}_test.py ufoLib2==0.13.0 pyobjc==8.1; sys_platform == "darwin"
Use slackclient fork with private group fix
python-chess==0.13.1 slackclient==0.16.0 redis==2.10.5 prettytable==0.7.2
python-chess==0.13.1 thieman-slackclient==0.16.1 redis==2.10.5 prettytable==0.7.2