Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove traces of old game. | //Copyright (C) 2009 - Missouri S&T ACM AI Team
//Please do not modify this file while building your AI
//See AI.h & AI.cpp for that
#ifndef GAME_H
#define GAME_H
#include "network.h"
#include "structures.h"
#ifdef WIN32
#define DLLEXPORT extern "C" __declspec(dllexport)
#else
#define DLLEXPORT
#endif
#define UP 2
#define UP_RIGHT 1
#define DOWN_RIGHT 0
#define DOWN 5
#define DOWN_LEFT 4
#define UP_LEFT 3
#define TURN_LEFT 1
#define TURN_RIGHT -1
extern "C"
{
DLLEXPORT bool login(int socket, const char* username, const char* password);
DLLEXPORT void createGame();
DLLEXPORT void joinGame(int id);
DLLEXPORT void endTurn();
DLLEXPORT void getStatus();
//commands
//accessors
DLLEXPORT int networkLoop(int socket);
}
#endif
| //Copyright (C) 2009 - Missouri S&T ACM AI Team
//Please do not modify this file while building your AI
//See AI.h & AI.cpp for that
#ifndef GAME_H
#define GAME_H
#include "network.h"
#include "structures.h"
#ifdef WIN32
#define DLLEXPORT extern "C" __declspec(dllexport)
#else
#define DLLEXPORT
#endif
extern "C"
{
DLLEXPORT bool login(int socket, const char* username, const char* password);
DLLEXPORT void createGame();
DLLEXPORT void joinGame(int id);
DLLEXPORT void endTurn();
DLLEXPORT void getStatus();
//commands
//accessors
DLLEXPORT int networkLoop(int socket);
}
#endif
|
Update year and author info in license file | The MIT License (MIT)
Copyright (c) 2014 Evan Hahn
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 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 minimal entry points for bootstrapping | [distutils.commands]
egg_info = setuptools.command.egg_info:egg_info
[distutils.setup_keywords]
include_package_data = setuptools.dist:assert_bool
install_requires = setuptools.dist:check_requirements
extras_require = setuptools.dist:check_extras
entry_points = setuptools.dist:check_entry_points
[egg_info.writers]
PKG-INFO = setuptools.command.egg_info:write_pkg_info
dependency_links.txt = setuptools.command.egg_info:overwrite_arg
entry_points.txt = setuptools.command.egg_info:write_entries
requires.txt = setuptools.command.egg_info:write_requirements
| |
Add aMetro - Subway navigator | Category:Navigation
License:GPLv3
Web Site:http://www.ametro.org/
Source Code:http://code.google.com/p/ametro/source/checkout
Issue Tracker:http://code.google.com/p/ametro/issues/list
Donate:http://www.ametro.org/donate
Summary:Subway/metro/train navigator
Description:
aMetro is an open source application for Android platform
for finding the shortest path in public transport (metro, subway,
trains and other types of transport), with maps that are compatible
with the maps from pMetro project (http://pmetro.info).
Features:
View metro maps and schemes for 180 cities around the world.
View maps for other kinds of transportation.
Zoom maps.
Find the shortest route between selected stations.
Get information about stations.
Update maps automatically.
Find the nearest station next to user's location (for selected cities)
.
Repo Type:git-svn
Repo:http://ametro.googlecode.com/svn/trunk/
Build Version:1.1.5,17,489,subdir=workspace/aMetro
| |
Fix Py dependencies for Gubernator test. | webtest
nosegae
pylint==1.6.4
coverage
PyYAML==5.1.1
| webtest
nosegae
pylint==1.6.4
coverage
lazy-object-proxy==1.6.0
PyYAML==5.1.1
|
Add version number to project. | cmake_minimum_required(VERSION 2.8.9)
project(DatabaseInteractor)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/DatabaseInteractor")
set(EXTENSION_CATEGORY "Web System Tools")
set(EXTENSION_CONTRIBUTORS "Clement Mirabel (University of Michigan), Juan Carlos Prieto (UNC)")
set(EXTENSION_DESCRIPTION "This extension can interact with online data in a database and local folders.")
set(EXTENSION_ICONURL "https://www.slicer.org/w/images/7/7f/DatabaseInteractor_Logo.png")
set(EXTENSION_SCREENSHOTURLS "https://www.slicer.org/w/images/1/1f/FullView_DatabaseInteractor.png")
set(EXTENSION_DEPENDS "NA") # Specified as a space separated string, a list or 'NA' if any
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(DatabaseInteractor)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})
| cmake_minimum_required(VERSION 2.8.9)
project(DatabaseInteractor)
set(DatabaseInteractor_VERSION_MAJOR 1)
set(DatabaseInteractor_VERSION_MINOR 1)
set(DatabaseInteractor_VERSION_PATCH 0)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/DatabaseInteractor")
set(EXTENSION_CATEGORY "Web System Tools")
set(EXTENSION_CONTRIBUTORS "Clement Mirabel (University of Michigan), Juan Carlos Prieto (UNC)")
set(EXTENSION_DESCRIPTION "This extension can interact with online data in a database and local folders.")
set(EXTENSION_ICONURL "https://www.slicer.org/w/images/7/7f/DatabaseInteractor_Logo.png")
set(EXTENSION_SCREENSHOTURLS "https://www.slicer.org/w/images/1/1f/FullView_DatabaseInteractor.png")
set(EXTENSION_DEPENDS "NA") # Specified as a space separated string, a list or 'NA' if any
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(DatabaseInteractor)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})
|
Use CMake glob function to add files | cmake_minimum_required (VERSION 2.6)
project (warg)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1y")
set (CMAKE_BUILD_TYPE Debug)
add_executable (warg "main.cpp" "State.cpp" "Shader.cpp" "Scene_Graph.cpp" "Render.cpp" "Mesh_Loader.cpp" "Globals.cpp")
include (FindPkgConfig)
pkg_search_module (SDL2 REQUIRED sdl2)
find_package (ASSIMP REQUIRED)
find_package (OpenGL REQUIRED)
find_package (GLEW REQUIRED)
include_directories (${GLEW_INCLUDE_DIRS} ${OpenGL_INCLUDE_DIRS} ${SDL2_INCLUDE_DIRS} ${ASSIMP_INCLUDE_DIRS} )
target_link_libraries (warg pthread ${GLEW_LIBRARIES} ${OPENGL_LIBRARIES} ${SDL2_LIBRARIES} ${ASSIMP_LIBRARIES} )
| cmake_minimum_required (VERSION 2.6)
project (warg)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1y")
set (CMAKE_BUILD_TYPE Debug)
file (GLOB CPP_FILES "*.cpp")
file (GLOB HEADER_FILES "*.h" ".hpp")
file (GLOB SHADER_FILES "Assets/Shaders/*.vert" "Assets/Shaders/*.frag")
add_executable (warg ${CPP_FILES} ${HEADER_FILES} ${SHADER_FILES})
include (FindPkgConfig)
pkg_search_module (SDL2 REQUIRED sdl2)
find_package (ASSIMP REQUIRED)
find_package (OpenGL REQUIRED)
find_package (GLEW REQUIRED)
include_directories (${GLEW_INCLUDE_DIRS} ${OpenGL_INCLUDE_DIRS} ${SDL2_INCLUDE_DIRS} ${ASSIMP_INCLUDE_DIRS} )
target_link_libraries (warg pthread ${GLEW_LIBRARIES} ${OPENGL_LIBRARIES} ${SDL2_LIBRARIES} ${ASSIMP_LIBRARIES} )
|
Add configuration flag to enable testing. | project(Substance)
cmake_minimum_required(VERSION 2.8.4)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/config)
set(SUBSTANCE_VERSION "0.5.0")
set(EXTERNALS_DIR ${PROJECT_SOURCE_DIR}/ext CACHE STRING "Directory where external projects should be downloaded to" )
set(EXTERNALS_ONLY OFF CACHE BOOL "Set this if you want to build externals only. (ON|OFF)")
set(ENABLE_JSC ON)
# Configure external projects
# ===========================
if (EXTERNALS_ONLY)
set (DOWNLOAD_EXTERNALS ON)
include(Externals)
endif()
# Process subdirectories
# ======================
if (NOT EXTERNALS_ONLY)
include(ExportTarget)
include(ConfigureVariables)
# include Externals to get variables set
include(Externals)
add_subdirectory(app)
# Configure Testing
# =================
if (TESTING)
enable_testing()
add_subdirectory(test)
endif()
endif () # EXTERNALS_ONLY
| project(Substance)
cmake_minimum_required(VERSION 2.8.4)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/config)
set(SUBSTANCE_VERSION "0.5.0")
set(EXTERNALS_DIR ${PROJECT_SOURCE_DIR}/ext CACHE STRING "Directory where external projects should be downloaded to" )
set(EXTERNALS_ONLY OFF CACHE BOOL "Set this if you want to build externals only. (ON|OFF)")
set(ENABLE_JSC ON)
set(ENABLE_TESTING ON CACHE BOOL "Enable test suite. (ON|OFF)")
# Configure external projects
# ===========================
if (EXTERNALS_ONLY)
set (DOWNLOAD_EXTERNALS ON)
include(Externals)
endif()
# Process subdirectories
# ======================
if (NOT EXTERNALS_ONLY)
include(ExportTarget)
include(ConfigureVariables)
# include Externals to get variables set
include(Externals)
add_subdirectory(app)
# Configure Testing
# =================
if (ENABLE_TESTING)
enable_testing()
add_subdirectory(test)
endif()
endif () # EXTERNALS_ONLY
|
Fix python dependencies versions to avoid regression from latest versions | Cohorte-Python==1.1.0
Cohorte-Herald==1.0.0
iPOPO==0.6.4
jsonrpclib-pelix==0.2.6
sleekxmpp>=1.3.1
requests>=2.3.0
| Cohorte-Python==1.1.0
Cohorte-Herald==1.0.0
iPOPO==0.6.4
jsonrpclib-pelix==0.2.6
sleekxmpp==1.3.1
requests==2.11.1
|
Fix installation for Python 3.4 | # when adding a new dependency, also add to setup.py's `install_requires`
Pygments==2.6.1
argparse==1.4.0
cssselect==1.1.0
lxml==4.5.2
pyquery==1.4.1
requests==2.24.0
cachelib==0.1.1
appdirs==1.4.4
keep==2.9
| # when adding a new dependency, also add to setup.py's `install_requires`
Pygments>=2.3.1
argparse==1.4.0
cssselect==1.1.0
lxml==4.5.2
pyquery==1.4.1
requests==2.24.0
cachelib==0.1.1
appdirs==1.4.4
keep==2.9
|
Update pytest from 3.3.2 to 3.4.0 | molecule==2.7.0
pytest==3.3.2
python-vagrant==0.5.15
testinfra==1.10.1
tox==2.9.1
| molecule==2.7.0
pytest==3.4.0
python-vagrant==0.5.15
testinfra==1.10.1
tox==2.9.1
|
Update newrelic package to 5.24.0.153 | # 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
flask-sitemap==0.3.0 # Web sitemaps
# 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.3 # 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
flask-sitemap==0.3.0 # Web sitemaps
# Monitoring/tracking/logging
blinker==1.4 # Dependency of rollbar
newrelic==5.24.0.153 # Website monitoring
rollbar==0.15.1 # rollbar.com error logging
varsnap==1.3.3 # Test discovery
|
Update newrelic from 2.106.1.88 to 3.0.0.89 | Django==1.11.10 # pyup: ignore
brazilnum==0.8.8
celery==4.1.0
dj-database-url==0.5.0
django-assets==0.12
django-bulk-update==2.2.0
django-cors-middleware==1.3.1
django-debug-toolbar==1.9.1
django-extensions==2.0.6
django-test-without-migrations==0.6
djangorestframework==3.7.7
freezegun==0.3.10
gunicorn==19.7.1
newrelic==2.106.1.88
psycopg2==2.7.4
py-gfm==0.1.3
python-decouple==3.1
python-memcached==1.59
python-twitter==3.4
reprint==0.3.0 # pyup: ignore
requests==2.18.4
rows==0.3.1
whitenoise==3.3.1
| Django==1.11.10 # pyup: ignore
brazilnum==0.8.8
celery==4.1.0
dj-database-url==0.5.0
django-assets==0.12
django-bulk-update==2.2.0
django-cors-middleware==1.3.1
django-debug-toolbar==1.9.1
django-extensions==2.0.6
django-test-without-migrations==0.6
djangorestframework==3.7.7
freezegun==0.3.10
gunicorn==19.7.1
newrelic==3.0.0.89
psycopg2==2.7.4
py-gfm==0.1.3
python-decouple==3.1
python-memcached==1.59
python-twitter==3.4
reprint==0.3.0 # pyup: ignore
requests==2.18.4
rows==0.3.1
whitenoise==3.3.1
|
Update gunicorn from 19.7.1 to 19.8.0 | # Pro-tip: Try not to put anything here. Avoid dependencies in
# production that aren't in development.
-r base.txt
{% if cookiecutter.windows == 'y' -%}
# Python-PostgreSQL Database Adapter
# If using Win for dev, this assumes Unix in prod
# ------------------------------------------------
psycopg2==2.7.4
{%- endif %}
# WSGI Handler
# ------------------------------------------------
gevent==1.2.2
gunicorn==19.7.1
| # Pro-tip: Try not to put anything here. Avoid dependencies in
# production that aren't in development.
-r base.txt
{% if cookiecutter.windows == 'y' -%}
# Python-PostgreSQL Database Adapter
# If using Win for dev, this assumes Unix in prod
# ------------------------------------------------
psycopg2==2.7.4
{%- endif %}
# WSGI Handler
# ------------------------------------------------
gevent==1.2.2
gunicorn==19.8.0
|
Add psutil to st2tests requirements. | # Remeber to list implicit packages here, otherwise version won't be fixated!
mock
unittest2
nose
rednose
| # Remeber to list implicit packages here, otherwise version won't be fixated!
mock
unittest2
nose
rednose
psutil
|
Fix live-preview with python 3.8 | alabaster==0.7.12
Babel==2.6.0
certifi==2018.10.15
chardet==3.0.4
docutils==0.14
idna==2.7
imagesize==1.1.0
Jinja2==2.10.1
jsonschema==2.6.0
MarkupSafe==1.1.1
pyenchant==2.0.0
Pygments==2.4.2
pytz==2018.7
PyYAML==5.3.1
recommonmark==0.4.0
requests==2.20.0
semver==2.9.0
six==1.11.0
snowballstemmer==1.2.1
Sphinx==1.8.1
sphinx-autobuild==0.7.1
sphinxcontrib-httpdomain==1.7.0
sphinxcontrib-openapi==0.3.2
sphinxcontrib-spelling==4.2.1
sphinxcontrib-websupport==1.1.0
sphinx-rtd-theme==0.2.4
sphinx-tabs==1.1.13
sphinx-version-warning==1.1.2
typing==3.6.6
urllib3==1.24.2
yamllint==1.22.0
| alabaster==0.7.12
Babel==2.6.0
certifi==2018.10.15
chardet==3.0.4
docutils==0.14
idna==2.7
imagesize==1.1.0
Jinja2==2.10.1
jsonschema==2.6.0
MarkupSafe==1.1.1
pyenchant==2.0.0
Pygments==2.4.2
pytz==2018.7
PyYAML==5.3.1
recommonmark==0.4.0
requests==2.20.0
semver==2.9.0
six==1.15.0
snowballstemmer==1.2.1
Sphinx==1.8.1
sphinx-autobuild==0.7.1
sphinxcontrib-httpdomain==1.7.0
sphinxcontrib-openapi==0.3.2
sphinxcontrib-spelling==4.2.1
sphinxcontrib-websupport==1.1.0
sphinx-rtd-theme==0.2.4
sphinx-tabs==1.1.13
sphinx-version-warning==1.1.2
typing==3.6.6
urllib3==1.24.2
yamllint==1.22.0
|
Deploy Travis CI build 779 to GitHub | # Linters
pep8
pep257
pylint
# Testing
pytest
pytest-describe
pytest-expecter
pytest-cov
pytest-random
expecter
# Coverage
coverage
coverage.space
| # Linters
pep8
pep257
pylint
# Testing
pytest
pytest-describe
pytest-expecter
pytest-cov
pytest-random
# Coverage
coverage
coverage.space
|
Update pika from 0.12.0 to 0.13.0 | pika==0.12.0
redis==3.0.1
rq==0.13.0
watchdog==0.9.0
| pika==0.13.0
redis==3.0.1
rq==0.13.0
watchdog==0.9.0
|
Bump types-redis from 4.2.3 to 4.2.5 | bandit==1.7.4
black==22.3.0
coverage==6.4
diff-cover==6.5.0
flake8==4.0.1
mock==4.0.3
pytest==7.1.2
pytest-cov==3.0.0
# Required to test building the docs
sphinx==4.5.0
# Mypy test requirements
mypy==0.950
types-requests==2.27.27
types-redis==4.2.3
| bandit==1.7.4
black==22.3.0
coverage==6.4
diff-cover==6.5.0
flake8==4.0.1
mock==4.0.3
pytest==7.1.2
pytest-cov==3.0.0
# Required to test building the docs
sphinx==4.5.0
# Mypy test requirements
mypy==0.950
types-requests==2.27.27
types-redis==4.2.5
|
Update pytest from 3.6.3 to 3.6.4 | mypy==0.620
pytest==3.6.3
pytest-cov==2.5.1
pytest-asyncio==0.8.0
pytest-monkeytype==1.0.1
jedi==0.12.1
coverage==4.5.1
flake8==3.5.0
typed-ast==1.1.0
rope==0.10.7 | mypy==0.620
pytest==3.6.4
pytest-cov==2.5.1
pytest-asyncio==0.8.0
pytest-monkeytype==1.0.1
jedi==0.12.1
coverage==4.5.1
flake8==3.5.0
typed-ast==1.1.0
rope==0.10.7 |
Update zopfli from 0.1.6 to 0.1.8 | # we use the official Brotli module on CPython and the CFFI-based
# extension 'brotlipy' on PyPy
brotli==1.0.9; platform_python_implementation != "PyPy"
brotlipy==0.7.0; platform_python_implementation == "PyPy"
unicodedata2==13.0.0.post2; python_version < '3.9' and platform_python_implementation != "PyPy"
scipy==1.7.1; platform_python_implementation != "PyPy"
munkres==1.1.4; platform_python_implementation == "PyPy"
zopfli==0.1.6
fs==2.4.11
skia-pathops==0.5.1.post1; platform_python_implementation != "PyPy"
# this is only required to run Tests/cu2qu/{ufo,cli}_test.py
ufoLib2==0.6.2
pyobjc==6.2.2; 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"
brotlipy==0.7.0; platform_python_implementation == "PyPy"
unicodedata2==13.0.0.post2; python_version < '3.9' and platform_python_implementation != "PyPy"
scipy==1.7.1; platform_python_implementation != "PyPy"
munkres==1.1.4; platform_python_implementation == "PyPy"
zopfli==0.1.8
fs==2.4.11
skia-pathops==0.5.1.post1; platform_python_implementation != "PyPy"
# this is only required to run Tests/cu2qu/{ufo,cli}_test.py
ufoLib2==0.6.2
pyobjc==6.2.2; sys_platform == "darwin"
|
Upgrade flake8 to latest version, add isort to PIP dependencies. | # Testing
mock==2.0.0
coverage==4.4.2
django-webtest==1.9.4
tox==2.9.1
detox==0.11
pytest-django==3.4.4
pytest-cov==2.6.0
django-widget-tweaks==1.4.3
# Development
django-extensions==1.9.8
django-debug-toolbar==1.9.1
flake8==3.5.0
| # Testing
mock==2.0.0
coverage==4.4.2
django-webtest==1.9.4
tox==2.9.1
detox==0.11
pytest-django==3.4.4
pytest-cov==2.6.0
django-widget-tweaks==1.4.3
# Development
django-extensions==1.9.8
django-debug-toolbar==1.9.1
flake8==3.7.7
isort==4.3.17
|
Update cookiecutter from 1.5.1 to 1.6.0 | cookiecutter==1.5.1
flake8==3.0.4
sh==1.12.14
virtualenv==15.1.0
Sphinx==1.6.4
sphinx-rtd-theme==0.2.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.6.0
flake8==3.0.4
sh==1.12.14
virtualenv==15.1.0
Sphinx==1.6.4
sphinx-rtd-theme==0.2.4
# Testing
pytest==3.2.3
pep8==1.7.0
pyflakes==1.6.0
tox==2.9.1
pytest-cookies==0.2.0
|
Update scipy from 1.5.2 to 1.5.4 | # we use the official Brotli module on CPython and the CFFI-based
# extension 'brotlipy' on PyPy
brotli==1.0.9; platform_python_implementation != "PyPy"
brotlipy==0.7.0; platform_python_implementation == "PyPy"
unicodedata2==13.0.0.post2; python_version < '3.9' and platform_python_implementation != "PyPy"
scipy==1.5.2; platform_python_implementation != "PyPy"
munkres==1.1.2; platform_python_implementation == "PyPy"
zopfli==0.1.6
fs==2.4.11
skia-pathops==0.5.0; platform_python_implementation != "PyPy"
# this is only required to run Tests/cu2qu/{ufo,cli}_test.py
ufoLib2==0.6.2
| # we use the official Brotli module on CPython and the CFFI-based
# extension 'brotlipy' on PyPy
brotli==1.0.9; platform_python_implementation != "PyPy"
brotlipy==0.7.0; platform_python_implementation == "PyPy"
unicodedata2==13.0.0.post2; python_version < '3.9' and platform_python_implementation != "PyPy"
scipy==1.5.4; platform_python_implementation != "PyPy"
munkres==1.1.2; platform_python_implementation == "PyPy"
zopfli==0.1.6
fs==2.4.11
skia-pathops==0.5.0; platform_python_implementation != "PyPy"
# this is only required to run Tests/cu2qu/{ufo,cli}_test.py
ufoLib2==0.6.2
|
Update lineid_plot from 0.5 to 0.6 | numpy==1.14.2
scipy>=0.19.0
astropy>=1.3.2
pandas>=0.19.2
matplotlib>=2.0.1
hypothesis>=3.9.0
PyAstronomy>=0.10.1
requests>=2.13.0
seaborn>=0.7.1
astroquery==0.3.7
lineid_plot==0.5
isochrones==1.1
| numpy==1.14.2
scipy>=0.19.0
astropy>=1.3.2
pandas>=0.19.2
matplotlib>=2.0.1
hypothesis>=3.9.0
PyAstronomy>=0.10.1
requests>=2.13.0
seaborn>=0.7.1
astroquery==0.3.7
lineid_plot==0.6
isochrones==1.1
|
Update pytest-xdist from 1.25.0 to 1.26.1 | pycparser==2.19
aioamqp==0.12.0
aiobotocore==0.10.0
aiodns==1.2.0
aiohttp==3.5.4
async-timeout==3.0.1
attrs==18.2.0
botocore==1.12.49
cchardet==2.1.4
chardet==3.0.4
codecov==2.0.15
colorama==0.4.1
coverage==4.5.2
docutils==0.14
execnet==1.5.0
jmespath==0.9.3
multidict==4.5.2
mypy==0.660
packaging==19.0
protobuf==3.6.1
pycares==2.4.0
pycodestyle==2.5.0
py==1.7.0
pyparsing==2.3.1
pytest==4.0.2
pytest-cov==2.6.0
pytest-forked==1.0.1
pytest-xdist==1.25.0
python-dateutil==2.7.5
pytz==2018.9
readme-renderer==24.0
requests==2.20.1
six==1.12.0
tzlocal==1.5.1
ujson==1.35
uvloop==0.12.0
yarl==1.3.0
| pycparser==2.19
aioamqp==0.12.0
aiobotocore==0.10.0
aiodns==1.2.0
aiohttp==3.5.4
async-timeout==3.0.1
attrs==18.2.0
botocore==1.12.49
cchardet==2.1.4
chardet==3.0.4
codecov==2.0.15
colorama==0.4.1
coverage==4.5.2
docutils==0.14
execnet==1.5.0
jmespath==0.9.3
multidict==4.5.2
mypy==0.660
packaging==19.0
protobuf==3.6.1
pycares==2.4.0
pycodestyle==2.5.0
py==1.7.0
pyparsing==2.3.1
pytest==4.0.2
pytest-cov==2.6.0
pytest-forked==1.0.1
pytest-xdist==1.26.1
python-dateutil==2.7.5
pytz==2018.9
readme-renderer==24.0
requests==2.20.1
six==1.12.0
tzlocal==1.5.1
ujson==1.35
uvloop==0.12.0
yarl==1.3.0
|
Update boto from 2.46.1 to 2.47.0 | APScheduler==3.3.1
boto==2.46.1
cached-property==1.3.0
click==6.7
Flask-Sockets==0.2.1
Flask==0.12.2
future==0.16.0
gevent==1.2.1
greenlet==0.4.12
gunicorn==19.7.1
localconfig==0.4.2
pexpect==4.2.1
psycopg2==2.7.1
redis==2.10.5
requests==2.18.1
rq==0.8.0
selenium==3.4.3
SQLAlchemy==1.1.11
tablib==0.11.5
ua-parser==0.7.3
user-agents==1.1.0
psutil==5.2.0 | APScheduler==3.3.1
boto==2.47.0
cached-property==1.3.0
click==6.7
Flask-Sockets==0.2.1
Flask==0.12.2
future==0.16.0
gevent==1.2.1
greenlet==0.4.12
gunicorn==19.7.1
localconfig==0.4.2
pexpect==4.2.1
psycopg2==2.7.1
redis==2.10.5
requests==2.18.1
rq==0.8.0
selenium==3.4.3
SQLAlchemy==1.1.11
tablib==0.11.5
ua-parser==0.7.3
user-agents==1.1.0
psutil==5.2.0 |
Remove incorrect reading for 'blows' | # The opposite of added.txt: these readings will be removed.
# Useful to remove incorrect readings from the binary dictionary without rebuilding it.
# File Encoding: UTF-8
# Format: fullform baseform postags (tab separated)
alert alert VBG
appalling appalling NNS
atomic atomic NN
brief brief VBG
bugs bugs JJ
cars cars NN
earlier earlier JJ
earliest earliest JJ
fouling fouling NNS
idling idling NNS
ie ie JJ
lower lowe JJR
pulling pulling NNS
pur pur JJ
seal seal NNS
sealing sealing NNS
settling settling NNS
spams Spam NNPS
species specie NNS
wrought work VBD
wrought work VBN
xx xx JJ
xxx xxx JJ
| # The opposite of added.txt: these readings will be removed.
# Useful to remove incorrect readings from the binary dictionary without rebuilding it.
# File Encoding: UTF-8
# Format: fullform baseform postags (tab separated)
alert alert VBG
appalling appalling NNS
atomic atomic NN
blows blows NN
brief brief VBG
bugs bugs JJ
cars cars NN
earlier earlier JJ
earliest earliest JJ
fouling fouling NNS
idling idling NNS
ie ie JJ
lower lowe JJR
pulling pulling NNS
pur pur JJ
seal seal NNS
sealing sealing NNS
settling settling NNS
spams Spam NNPS
species specie NNS
wrought work VBD
wrought work VBN
xx xx JJ
xxx xxx JJ
|
Add dependency from AsmParser to BinaryFormat. | ;===- ./lib/AsmParser/LLVMBuild.txt ----------------------------*- Conf -*--===;
;
; The LLVM Compiler Infrastructure
;
; This file is distributed under the University of Illinois Open Source
; License. See LICENSE.TXT for details.
;
;===------------------------------------------------------------------------===;
;
; This is an LLVMBuild description file for the components in this subdirectory.
;
; For more information on the LLVMBuild system, please see:
;
; http://llvm.org/docs/LLVMBuild.html
;
;===------------------------------------------------------------------------===;
[component_0]
type = Library
name = AsmParser
parent = Libraries
required_libraries = Core Support
| ;===- ./lib/AsmParser/LLVMBuild.txt ----------------------------*- Conf -*--===;
;
; The LLVM Compiler Infrastructure
;
; This file is distributed under the University of Illinois Open Source
; License. See LICENSE.TXT for details.
;
;===------------------------------------------------------------------------===;
;
; This is an LLVMBuild description file for the components in this subdirectory.
;
; For more information on the LLVMBuild system, please see:
;
; http://llvm.org/docs/LLVMBuild.html
;
;===------------------------------------------------------------------------===;
[component_0]
type = Library
name = AsmParser
parent = Libraries
required_libraries = BinaryFormat Core Support
|
Update RGB Tool to 1.3.1 (7) | Categories:Multimedia
License:Apache2
Web Site:
Source Code:https://github.com/fasteque/rgb-tool
Issue Tracker:https://github.com/fasteque/rgb-tool/issues
Auto Name:RGB Tool
Summary:Get RGB and HEX values of a color
Description:
Simple and fast tool to get RGB channel and HEX values about a color.
.
Repo Type:git
Repo:https://github.com/fasteque/rgb-tool
Build:1.2.0,5
commit=88e446b4b1bdc3d75d8b25b929bbe2d63317cc05
subdir=android-rgb-tool
gradle=yes
prebuild=sed -i -e 's/gradle-plugin:0.13/gradle-plugin:0.12/g' -e 's/gradle:0.13.+/gradle:0.12.+/g' ../build.gradle
Build:1.3.0,6
commit=cf5b35ad13d6b24b4bd5179d3e235147ccc88955
subdir=android-rgb-tool
gradle=yes
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:1.3.1
Current Version Code:7
| Categories:Multimedia
License:Apache2
Web Site:
Source Code:https://github.com/fasteque/rgb-tool
Issue Tracker:https://github.com/fasteque/rgb-tool/issues
Auto Name:RGB Tool
Summary:Get RGB and HEX values of a color
Description:
Simple and fast tool to get RGB channel and HEX values about a color.
.
Repo Type:git
Repo:https://github.com/fasteque/rgb-tool
Build:1.2.0,5
commit=88e446b4b1bdc3d75d8b25b929bbe2d63317cc05
subdir=android-rgb-tool
gradle=yes
prebuild=sed -i -e 's/gradle-plugin:0.13/gradle-plugin:0.12/g' -e 's/gradle:0.13.+/gradle:0.12.+/g' ../build.gradle
Build:1.3.0,6
commit=cf5b35ad13d6b24b4bd5179d3e235147ccc88955
subdir=android-rgb-tool
gradle=yes
Build:1.3.1,7
commit=c093c3a42e7ce9f88f0feca5f7f3b669b4d3a4c7
subdir=android-rgb-tool
gradle=yes
Auto Update Mode:None
Update Check Mode:RepoManifest
Current Version:1.3.1
Current Version Code:7
|
Update pytest from 3.2.0 to 3.2.1 | pyflakes==1.6.0
pep8==1.7.0
pytest==3.2.0
ipdb==0.10.3
| pyflakes==1.6.0
pep8==1.7.0
pytest==3.2.1
ipdb==0.10.3
|
Update flake8-docstrings from 1.1.0 to 1.3.0 | PyYAML==3.12
Sphinx==1.6.3
bumpversion==0.5.3
coverage==4.4.1
flake8-import-order==0.12
flake8==3.4.1
grpcio-tools>=1.2.0
hypothesis==3.11.6
pip==9.0.1
pytest==3.2.1
tox==2.7.0
wheel==0.29.0
flake8-docstrings==1.1.0
mock==2.0.0
pifpaf>=0.27.1
| PyYAML==3.12
Sphinx==1.6.3
bumpversion==0.5.3
coverage==4.4.1
flake8-import-order==0.12
flake8==3.4.1
grpcio-tools>=1.2.0
hypothesis==3.11.6
pip==9.0.1
pytest==3.2.1
tox==2.7.0
wheel==0.29.0
flake8-docstrings==1.3.0
mock==2.0.0
pifpaf>=0.27.1
|
Add tox to the requirements for development. | #
# pip requires for hacking on the code.
#
mock
nose
coverage
Sphinx | #
# pip requires for hacking on the code.
#
mock
nose
coverage
Sphinx
tox |
Update pytz from 2018.9 to 2019.1 | # Contains all dependencies which are required for production and for development
Django==2.0.13 # pyup: <2.1
django-bootstrap4==0.0.8
django-icons==0.2.1
django-formtools==2.1
odswriter==0.4.0
Pillow==5.4.1 # pyup: <6.0.0
pyTUID==1.3.4
pytz==2018.9
| # Contains all dependencies which are required for production and for development
Django==2.0.13 # pyup: <2.1
django-bootstrap4==0.0.8
django-icons==0.2.1
django-formtools==2.1
odswriter==0.4.0
Pillow==5.4.1 # pyup: <6.0.0
pyTUID==1.3.4
pytz==2019.1
|
Update sqlalchemy from 1.2.8 to 1.2.9 | sqlalchemy==1.2.8
appdirs==1.4.3
unihan-etl==0.9.5
| sqlalchemy==1.2.9
appdirs==1.4.3
unihan-etl==0.9.5
|
Make both viewer versions buildable at the same time | # Depends
IF(BUILD_VIEWER_SDL)
FIND_PACKAGE(SDL REQUIRED)
SET(FRONTEND_SOURCES SDLMain.cc)
SET(FRONTEND_LIBRARIES ${SDL_LIBRARY})
SET(FRONTEND_INCLUDE_DIR ${SDL_INCLUDE_DIR})
ELSEIF(BUILD_VIEWER_GLUT)
FIND_PACKAGE(GLUT REQUIRED)
SET(FRONTEND_SOURCES GLUTMain.cc)
SET(FRONTEND_LIBRARIES ${GLUT_LIBRARY})
SET(FRONTEND_INCLUDE_DIR ${GLUT_INCLUDE_DIR})
ENDIF(BUILD_VIEWER_SDL)
# Targets
SET(SOURCES
${FRONTEND_SOURCES}
GlosmViewer.cc
)
INCLUDE_DIRECTORIES(${OPENGL_INCLUDE_DIR} ${FRONTEND_INCLUDE_DIR} ${GLEW_INCLUDE_DIR} ../libglosm-client/include ../libglosm-server/include ../libglosm-geomgen/include)
ADD_EXECUTABLE(glosm-viewer ${SOURCES})
TARGET_LINK_LIBRARIES(glosm-viewer glosm-client glosm-server glosm-geomgen ${FRONTEND_LIBRARIES} ${GLEW_LIBRARY})
# Installation
INSTALL(TARGETS glosm-viewer RUNTIME DESTINATION ${BINDIR})
| IF(BUILD_VIEWER_SDL)
# Depends
FIND_PACKAGE(SDL REQUIRED)
# Targets
SET(SOURCES
SDLMain.cc
GlosmViewer.cc
)
INCLUDE_DIRECTORIES(${OPENGL_INCLUDE_DIR} ${SDL_INCLUDE_DIR} ${GLEW_INCLUDE_DIR} ../libglosm-client/include ../libglosm-server/include ../libglosm-geomgen/include)
ADD_EXECUTABLE(glosm-viewer-sdl ${SOURCES})
TARGET_LINK_LIBRARIES(glosm-viewer-sdl glosm-client glosm-server glosm-geomgen ${SDL_LIBRARY} ${GLEW_LIBRARY})
# Installation
INSTALL(TARGETS glosm-viewer-sdl RUNTIME DESTINATION ${BINDIR})
ENDIF(BUILD_VIEWER_SDL)
IF(BUILD_VIEWER_GLUT)
# Depends
FIND_PACKAGE(GLUT REQUIRED)
# Targets
SET(SOURCES
GLUTMain.cc
GlosmViewer.cc
)
INCLUDE_DIRECTORIES(${OPENGL_INCLUDE_DIR} ${GLUT_INCLUDE_DIR} ${GLEW_INCLUDE_DIR} ../libglosm-client/include ../libglosm-server/include ../libglosm-geomgen/include)
ADD_EXECUTABLE(glosm-viewer-glut ${SOURCES})
TARGET_LINK_LIBRARIES(glosm-viewer-glut glosm-client glosm-server glosm-geomgen ${GLUT_LIBRARIES} ${GLEW_LIBRARY})
# Installation
INSTALL(TARGETS glosm-viewer-glut RUNTIME DESTINATION ${BINDIR})
ENDIF(BUILD_VIEWER_GLUT)
|
Update sphinx from 1.6.4 to 1.6.5 | sphinx==1.6.4
sphinx-rtd-theme==0.2.4
Django==1.11.6
-e .
| sphinx==1.6.5
sphinx-rtd-theme==0.2.4
Django==1.11.6
-e .
|
Update newrelic from 2.88.0.72 to 2.88.1.73 | # Dependencies related to deploying nsize-web
-r base.txt
# WSGI Handler
gevent==1.2.2
gunicorn==19.7.1
# Static and Media Storage
django-storages-redux==1.3.3
# App Monitoring
newrelic==2.88.0.72
| # Dependencies related to deploying nsize-web
-r base.txt
# WSGI Handler
gevent==1.2.2
gunicorn==19.7.1
# Static and Media Storage
django-storages-redux==1.3.3
# App Monitoring
newrelic==2.88.1.73
|
Check data.csv vs source in HTML format | URL: https://www.wmo.int/cpdb/tools/countrymatcher
Title: Country2PUB5 matcher
Description:
Please input country names into the textfield
and press match to start matching process
| URL: https://www.wmo.int/cpdb/tools/countrymatcher
Title: Country2PUB5 matcher
Checked: 2015-01-28
Description:
Please input country names into the textfield
and press match to start matching process
|
Set Mercurial version to the latest | -r pip.txt
pytest<4,>=3.3.0
pytest-django==3.1.2
pytest-xdist==1.20.1
apipkg==1.4
execnet==1.5.0
Mercurial
# local debugging tools
pdbpp
| -r pip.txt
pytest<4,>=3.3.0
pytest-django==3.1.2
pytest-xdist==1.20.1
apipkg==1.4
execnet==1.5.0
Mercurial==4.4.2
# local debugging tools
pdbpp
|
Add todo item: Create two views, JTree and my awesome ButtonNodeTree view. | 1. Find a way to present a subview of the tree without re-writing everything
2. Implement the new level, job and also add a job view section to the bottom left IOSurface
| 1. Find a way to present a subview of the tree without re-writing everything
2. Implement the new level, job and also add a job view section to the bottom left IOSurface
3. Add a file menu: Choose JTree representaion (boring, but prbably faster) or my ButtonNodeTree representation (31337)
|
Update flake8 from 3.3.0 to 3.4.0 | flake8==3.3.0
pytest==3.1.3
pytest-cov==2.5.1
pytest-catchlog==1.2.2
docker-py==1.10.6
coveralls==1.1
Sphinx==1.6.3
lz4tools==1.3.1.2
xxhash==1.0.1
sphinxcontrib-asyncio==0.2.0
sphinxcontrib-spelling==2.3.0
alabaster==0.7.10
diff-cover==0.9.12
setuptools>=34.4.0
| flake8==3.4.0
pytest==3.1.3
pytest-cov==2.5.1
pytest-catchlog==1.2.2
docker-py==1.10.6
coveralls==1.1
Sphinx==1.6.3
lz4tools==1.3.1.2
xxhash==1.0.1
sphinxcontrib-asyncio==0.2.0
sphinxcontrib-spelling==2.3.0
alabaster==0.7.10
diff-cover==0.9.12
setuptools>=34.4.0
|
Update pytest-runner from 4.4 to 5.1 | pip==19.1.1
bumpversion==0.5.3
wheel==0.33.4
watchdog==0.9.0
flake8==3.7.7
tox==3.12.1
coverage==4.5.3
Sphinx==2.1.1
cryptography==2.7
PyYAML==5.1.1
pytest==4.6.2
pytest-runner==4.4
vcrpy==2.0.1
twine==1.13.0
| pip==19.1.1
bumpversion==0.5.3
wheel==0.33.4
watchdog==0.9.0
flake8==3.7.7
tox==3.12.1
coverage==4.5.3
Sphinx==2.1.1
cryptography==2.7
PyYAML==5.1.1
pytest==4.6.2
pytest-runner==5.1
vcrpy==2.0.1
twine==1.13.0
|
Update tox from 2.3.1 to 2.4.1 | pip==8.1.2
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.0.4
tox==2.3.1
coverage==4.2
Sphinx==1.4.8
cryptography==1.5.2
PyYAML==3.11
pytest==3.0.3
| pip==8.1.2
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.0.4
tox==2.4.1
coverage==4.2
Sphinx==1.4.8
cryptography==1.5.2
PyYAML==3.11
pytest==3.0.3
|
Update pytest from 3.6.1 to 3.6.3 | pip==10.0.1
bumpversion==0.5.3
wheel==0.31.1
watchdog==0.8.3
flake8==3.5.0
mock==2.0.0
tox==3.0.0
coverage==4.5.1
Sphinx==1.7.5
cryptography==2.2.2
PyYAML==3.12
future==0.16.0
scipy>=0.17.0
numpy>=1.13.0
matplotlib>=1.3.1
pytest==3.6.1
attrs==18.1.0 | pip==10.0.1
bumpversion==0.5.3
wheel==0.31.1
watchdog==0.8.3
flake8==3.5.0
mock==2.0.0
tox==3.0.0
coverage==4.5.1
Sphinx==1.7.5
cryptography==2.2.2
PyYAML==3.12
future==0.16.0
scipy>=0.17.0
numpy>=1.13.0
matplotlib>=1.3.1
pytest==3.6.3
attrs==18.1.0 |
Add ShapePopulationViewer as dependency for the extension | cmake_minimum_required(VERSION 2.8.9)
project(ShapeVarationAnalyzer)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/ShapeVarationAnalyzer")
set(EXTENSION_CATEGORY "Machine Learning")
set(EXTENSION_CONTRIBUTORS "Priscille de Dumast (University of Michigan), Laura Pascal (University of Michigan)")
set(EXTENSION_DESCRIPTION "ShapeVariationAnalyzer allows the classification of 3D models, according to their morphological variations. This tool is based on a deep learning neural network.")
set(EXTENSION_ICONURL "http://www.example.com/Slicer/Extensions/ShapeVarationAnalyzer.png")
set(EXTENSION_SCREENSHOTURLS "http://www.example.com/Slicer/Extensions/ShapeVarationAnalyzer/Screenshots/1.png")
set(EXTENSION_DEPENDS "NA") # Specified as a space separated string, a list or 'NA' if any
# set(EXTENSION_DEPENDS ShapePopulationViewer)
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(src)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})
| cmake_minimum_required(VERSION 2.8.9)
project(ShapeVarationAnalyzer)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "http://slicer.org/slicerWiki/index.php/Documentation/Nightly/Extensions/ShapeVarationAnalyzer")
set(EXTENSION_CATEGORY "Machine Learning")
set(EXTENSION_CONTRIBUTORS "Priscille de Dumast (University of Michigan), Laura Pascal (University of Michigan)")
set(EXTENSION_DESCRIPTION "ShapeVariationAnalyzer allows the classification of 3D models, according to their morphological variations. This tool is based on a deep learning neural network.")
set(EXTENSION_ICONURL "http://www.example.com/Slicer/Extensions/ShapeVarationAnalyzer.png")
set(EXTENSION_SCREENSHOTURLS "http://www.example.com/Slicer/Extensions/ShapeVarationAnalyzer/Screenshots/1.png")
# set(EXTENSION_DEPENDS "NA") # Specified as a space separated string, a list or 'NA' if any
set(EXTENSION_DEPENDS ShapePopulationViewer)
#-----------------------------------------------------------------------------
# Extension dependencies
find_package(Slicer REQUIRED)
include(${Slicer_USE_FILE})
#-----------------------------------------------------------------------------
# Extension modules
add_subdirectory(src)
## NEXT_MODULE
#-----------------------------------------------------------------------------
include(${Slicer_EXTENSION_CPACK})
|
Drop the pin version of py.test | pytest>=2.7.3
pytest-cov
pytest-xdist
-e git://github.com/Lukasa/hypothesis.git@issue/143#egg=hypothesis
hypothesis-pytest
| pytest~=2.7.3
pytest-cov
pytest-xdist
-e git://github.com/Lukasa/hypothesis.git@issue/143#egg=hypothesis
hypothesis-pytest
|
Fix the build error due to pthread link on windows |
#add_definitions(-DZTHREAD_EXPORTS)
file(GLOB SRCS
${PROJECT_SOURCE_DIR}/tests/*.cc
)
add_executable(demo ${SRCS})
target_link_libraries(demo zthread pthread)
|
#add_definitions(-DZTHREAD_EXPORTS)
file(GLOB SRCS
${PROJECT_SOURCE_DIR}/tests/*.cc
)
add_executable(demo ${SRCS})
set(DEMO_DEPENDS "zthread")
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(CMAKE_CXX_FLAGS ${DEMO_DEPENDS} pthread)
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(CMAKE_CXX_FLAGS ${DEMO_DEPENDS} pthread)
else()
endif()
target_link_libraries(demo ${DEMO_DEPENDS})
|
Update djangorestframework from 3.9.3 to 3.9.4 | git+git://github.com/liqd/adhocracy4.git@mB-v2.1#egg=adhocracy4
Django==1.11.20 # pyup: <2.0
wagtail==2.3 # pyup: <2.4
bcrypt==3.1.6
brotli==1.0.7
django-capture-tag==1.0
django_csp==3.5
requests==2.22.0
whitenoise==4.1.2
zeep==3.3.1
# Inherited a4-core requirements
bleach==3.1.0
django-allauth==0.39.1
django-autoslug==1.9.4
django-background-tasks==1.2.0
django-cachalot==2.1.0
django-ckeditor==5.7.1
django-cloudflare-push==0.2.0
django-multiselectfield==0.1.8
django-filter==2.1.0
django-sites==0.10
django-widget-tweaks==1.4.3
djangorestframework==3.9.3
easy-thumbnails==2.6
html5lib==1.0.1
jsonfield==2.0.2
python-dateutil==2.8.0
python-magic==0.4.15
raven==6.10.0
rules==2.0.1
XlsxWriter==1.1.8
| git+git://github.com/liqd/adhocracy4.git@mB-v2.1#egg=adhocracy4
Django==1.11.20 # pyup: <2.0
wagtail==2.3 # pyup: <2.4
bcrypt==3.1.6
brotli==1.0.7
django-capture-tag==1.0
django_csp==3.5
requests==2.22.0
whitenoise==4.1.2
zeep==3.3.1
# Inherited a4-core requirements
bleach==3.1.0
django-allauth==0.39.1
django-autoslug==1.9.4
django-background-tasks==1.2.0
django-cachalot==2.1.0
django-ckeditor==5.7.1
django-cloudflare-push==0.2.0
django-multiselectfield==0.1.8
django-filter==2.1.0
django-sites==0.10
django-widget-tweaks==1.4.3
djangorestframework==3.9.4
easy-thumbnails==2.6
html5lib==1.0.1
jsonfield==2.0.2
python-dateutil==2.8.0
python-magic==0.4.15
raven==6.10.0
rules==2.0.1
XlsxWriter==1.1.8
|
Update django-coverage-plugin from 1.3.1 to 1.5.0 | # Test dependencies go here.
-r base.txt
coverage==4.2
django-coverage-plugin==1.3.1
flake8==3.0.4
django-test-plus==1.0.16
factory_boy==2.7.0
# pytest!
pytest-django==3.0.0
pytest-sugar==0.7.1
| # Test dependencies go here.
-r base.txt
coverage==4.2
django-coverage-plugin==1.5.0
flake8==3.0.4
django-test-plus==1.0.16
factory_boy==2.7.0
# pytest!
pytest-django==3.0.0
pytest-sugar==0.7.1
|
Move header files properly to <builddir>/include/mlpack/ and then install them correctly to $prefix/include/mlpack. | ## include dirs
include_directories(..) # <mlpack/[whatever]>
## recurse
set(DIRS
core
methods
)
foreach(dir ${DIRS})
add_subdirectory(${dir})
endforeach()
# MLPACK_SRCS is set in the subdirectories
add_library(mlpack ${MLPACK_SRCS})
target_link_libraries(mlpack
armadillo
lapack
blas
boost_program_options
)
# move header files to the right directory
file(GLOB_RECURSE INCLUDE_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h)
add_custom_command(TARGET mlpack POST_BUILD
COMMENT "Moving header files to include/mlpack/"
COMMAND ${CMAKE_COMMAND} ARGS -E make_directory ${CMAKE_BINARY_DIR}/include/mlpack/)
foreach(incl_file ${INCLUDE_FILES})
add_custom_command(TARGET mlpack POST_BUILD
COMMAND ${CMAKE_COMMAND} ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/${incl_file} ${CMAKE_BINARY_DIR}/include/mlpack/${incl_file} )
endforeach()
# set installation rules for include files
#install(FILES ${CMAKE_BINARY_DIR}/include/mlpack/
# DESTINATION include/mlpack)
# set installation rules for mlpack programs
#install(PROGRAMS ${CMAKE_BINARY_DIR}/bin/
# DESTINATION bin)
install(TARGETS mlpack
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
| include_directories(..) # <mlpack/[whatever]>
## Recurse into both core/ and methods/.
set(DIRS
core
methods
)
foreach(dir ${DIRS})
add_subdirectory(${dir})
endforeach()
# MLPACK_SRCS is set in the subdirectories.
add_library(mlpack ${MLPACK_SRCS})
target_link_libraries(mlpack
armadillo
lapack
blas
boost_program_options
)
# Collect all header files in the library.
file(GLOB_RECURSE INCLUDE_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h*)
# Move all of these header files to <builddir>/include/mlpack/ after the library
# is built. First we have to create that directory though.
add_custom_command(TARGET mlpack POST_BUILD
COMMENT "Moving header files to include/mlpack/"
COMMAND ${CMAKE_COMMAND} ARGS -E
make_directory ${CMAKE_BINARY_DIR}/include/mlpack/)
# Then copy each of the header files over to that directory.
foreach(incl_file ${INCLUDE_FILES})
add_custom_command(TARGET mlpack POST_BUILD
COMMAND ${CMAKE_COMMAND} ARGS -E
copy ${CMAKE_CURRENT_SOURCE_DIR}/${incl_file}
${CMAKE_BINARY_DIR}/include/mlpack/${incl_file})
endforeach()
# At install time, we simply install that directory of header files we
# collected to include/.
install(DIRECTORY ${CMAKE_BINARY_DIR}/include/mlpack DESTINATION include)
install(TARGETS mlpack
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
|
Add documentation for directory "cont" with pointers to existing web pages. | BEGIN_HTML
<head>
<title>The ROOT Collection Classes</title>
<link rev=made href="mailto:rootdev@root.cern.ch">
<meta name="rating" content="General">
<meta name="objecttype" content="Manual">
<meta name="keywords" content="software development, oo, object oriented, unix, x11, motif, windows nt, c++, html, rene brun, nenad buncic, fons rademakers">
<meta name="description" content="ROOT - An Object Oriented Framework For Large Scale Data Analysis.">
</head>
<body BGCOLOR="#ffffff" LINK="#0000ff" VLINK="#551a8b" ALINK="#ff0000" TEXT="#000000">
<center><h1>The ROOT Collection Classes</h1></center>
<p><hr><p>
Collections are a key feature of the ROOT system. Many, if not most, of
the applications you write will use collections. If you have used
polymorphic C++ collections before, some of this material will be review.
However, much of this tutorial covers aspects of collections specific to
the ROOT system. In this tutorial the following features will be demonstrated:
<ul>
<li>How to create instances of collections
<li>The difference between lists, ordered collections, hashtables, maps, etc.
<li>How to add and remove elements of a collection
<li>How to search a collection for a specific element
<li>How to access and modify collection elements
<li>How to iterate over a collection
<li>How to manage memory for collections and collection elements
<li>How collection elements are tested for equality (<tt>IsEqual()</tt>)
<li>How collection elements are compared (<tt>Compare()</tt>) in case of sorted collections
<li>How collection elements are hashed (<tt>Hash()</tt>) in hash tables
</ul>
<dl>
<dt><a href=http://root.cern.ch/root/Collection2.html>Understanding collections</a>
<dt><a href=http://root.cern.ch/root/html/examples/tcollex.C.html>Using collections</a>
</dl>
<p><hr>
END_HTML
| |
Update numpy from 1.14.5 to 1.15.1 | click==6.7
h5py==2.8.0
Keras>=2.0.0
notebook==5.6.0
matplotlib==2.2.2
numpy==1.14.5
pandas==0.23.3
Pillow==5.2.0
protobuf==3.6.0
requests==2.19.1
scipy==1.1.0
stevedore==1.28.0
| click==6.7
h5py==2.8.0
Keras>=2.0.0
notebook==5.6.0
matplotlib==2.2.2
numpy==1.15.1
pandas==0.23.3
Pillow==5.2.0
protobuf==3.6.0
requests==2.19.1
scipy==1.1.0
stevedore==1.28.0
|
Update requests from 2.18.1 to 2.18.2 | feedparser==5.2.1
PyYAML==3.12
requests==2.18.1
wallabag-api==1.1.0
beautifulsoup4==4.6.0 | feedparser==5.2.1
PyYAML==3.12
requests==2.18.2
wallabag-api==1.1.0
beautifulsoup4==4.6.0 |
Update coverage from 4.4.2 to 4.5 | pysingleton==0.2.1
colorful==0.4.1
docopt==0.6.2
ipython==5.3.0
tag-expressions>=1.0.0
lxml==4.1.1
radish-parse_type==0.3.5
coverage==4.4.2
PyYAML==3.12
humanize==0.5.1
| pysingleton==0.2.1
colorful==0.4.1
docopt==0.6.2
ipython==5.3.0
tag-expressions>=1.0.0
lxml==4.1.1
radish-parse_type==0.3.5
coverage==4.5
PyYAML==3.12
humanize==0.5.1
|
Update to next version of ChatterBot corpus | chatterbot-corpus>=0.0.1,<1.0.0
jsondatabase>=0.1.7,<1.0.0
nltk>=3.2.0,<4.0.0
pymongo>=3.3.0,<4.0.0
python-twitter>=3.0.0,<4.0.0
SQLAlchemy>=1.1,<1.2 | chatterbot-corpus>=1.0.0,<1.1.0
jsondatabase>=0.1.7,<1.0.0
nltk>=3.2.0,<4.0.0
pymongo>=3.3.0,<4.0.0
python-twitter>=3.0.0,<4.0.0
SQLAlchemy>=1.1,<1.2
|
Update cryptography from 1.9 to 2.0.3 | asn1crypto==0.22.0
attrs==17.2.0
autobahn==17.6.2
Automat==0.6.0
cffi==1.10.0
constantly==15.1.0
coverage==4.4.1
coveralls==1.1
cryptography==1.9
hyperlink==17.2.1
idna==2.5
incremental==17.5.0
nose==1.3.7
pyasn1==0.2.3
pyasn1-modules==0.0.9
pycparser==2.17
pyOpenSSL==17.0.0
pytest==3.0.7
pytest-cov==2.5.1
service-identity==17.0.0
six==1.10.0
Sphinx==1.6.2
sphinx-rtd-theme==0.2.4
sphinxcontrib-napoleon==0.6.1
sphinxcontrib-websupport==1.0.1
txaio==2.8.0
zope.interface==4.4.2
| asn1crypto==0.22.0
attrs==17.2.0
autobahn==17.6.2
Automat==0.6.0
cffi==1.10.0
constantly==15.1.0
coverage==4.4.1
coveralls==1.1
cryptography==2.0.3
hyperlink==17.2.1
idna==2.5
incremental==17.5.0
nose==1.3.7
pyasn1==0.2.3
pyasn1-modules==0.0.9
pycparser==2.17
pyOpenSSL==17.0.0
pytest==3.0.7
pytest-cov==2.5.1
service-identity==17.0.0
six==1.10.0
Sphinx==1.6.2
sphinx-rtd-theme==0.2.4
sphinxcontrib-napoleon==0.6.1
sphinxcontrib-websupport==1.0.1
txaio==2.8.0
zope.interface==4.4.2
|
Update transitions from 0.5.3 to 0.6.1 | alembic==0.9.4
antiorm==1.2.1
appdirs==1.4.3
chardet==3.0.4
codeclimate-test-reporter==0.2.3
coverage==4.4.1
dataset==0.8.0
db==0.1.1
db-sqlite3==0.0.1
ddt==1.1.1
Mako==1.0.7
MarkupSafe==1.0
normality==0.4.4
packaging==16.8
psycopg2==2.7.3
pygraphviz==1.3.1
pyparsing==2.2.0
python-editor==1.0.3
PyYAML==3.12
requests==2.18.3
six==1.10.0
SQLAlchemy==1.1.13
toolz==0.8.2
transitions==0.5.3
| alembic==0.9.4
antiorm==1.2.1
appdirs==1.4.3
chardet==3.0.4
codeclimate-test-reporter==0.2.3
coverage==4.4.1
dataset==0.8.0
db==0.1.1
db-sqlite3==0.0.1
ddt==1.1.1
Mako==1.0.7
MarkupSafe==1.0
normality==0.4.4
packaging==16.8
psycopg2==2.7.3
pygraphviz==1.3.1
pyparsing==2.2.0
python-editor==1.0.3
PyYAML==3.12
requests==2.18.3
six==1.10.0
SQLAlchemy==1.1.13
toolz==0.8.2
transitions==0.6.1
|
Update markupsafe from 1.0 to 1.1.0 | docutils==0.14
Jinja2==2.10
MarkupSafe==1.0
# glueplate
| docutils==0.14
Jinja2==2.10
MarkupSafe==1.1.0
# glueplate
|
Add Public Domain license (Unlicense) | This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
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 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.
For more information, please refer to <http://unlicense.org>
| |
Support for gcc 5.1. Define _GLIBCXX_USE_CXX11_ABI=0 for files using the Oracle occi binary library. | ############################################################################
# CMakeLists.txt file for building ROOT sql/oracle package
############################################################################
ROOT_USE_PACKAGE(io/io)
ROOT_USE_PACKAGE(net/net)
include_directories(${ORACLE_INCLUDE_DIR})
add_definitions(${ORACLE_DEFINITIONS})
ROOT_GENERATE_DICTIONARY(G__Oracle *.h MODULE Oracle LINKDEF LinkDef.h)
ROOT_LINKER_LIBRARY(Oracle *.cxx G__Oracle.cxx LIBRARIES Core ${ORACLE_LIBRARIES} DEPENDENCIES Net RIO)
ROOT_INSTALL_HEADERS()
| ############################################################################
# CMakeLists.txt file for building ROOT sql/oracle package
############################################################################
ROOT_USE_PACKAGE(io/io)
ROOT_USE_PACKAGE(net/net)
include_directories(${ORACLE_INCLUDE_DIR})
add_definitions(${ORACLE_DEFINITIONS})
ROOT_GENERATE_DICTIONARY(G__Oracle *.h MODULE Oracle LINKDEF LinkDef.h)
ROOT_LINKER_LIBRARY(Oracle *.cxx G__Oracle.cxx LIBRARIES Core ${ORACLE_LIBRARIES} DEPENDENCIES Net RIO)
if(GCC_MAJOR GREATER 4)
file(GLOB srcs src/TOracle*.cxx)
set_source_files_properties(${srcs} PROPERTIES COMPILE_DEFINITIONS _GLIBCXX_USE_CXX11_ABI=0)
endif()
ROOT_INSTALL_HEADERS()
|
Add the check_node_count flag to the excluded flags whitelist. | check_version_skew
concurrent_rc_syncs
file_content
file_mode
file_owner
file_perm
fs_type
gke_context
max_in_flight
max_par
new_file_0644
new_file_0660
new_file_0666
new_file_0777
pods_per_node
pods_per_node
test_args
up_to
up_to
valid_flag
retry_time
file_content_in_loop
break_on_expected_content
| check_version_skew
check_node_count
concurrent_rc_syncs
file_content
file_mode
file_owner
file_perm
fs_type
gke_context
max_in_flight
max_par
new_file_0644
new_file_0660
new_file_0666
new_file_0777
pods_per_node
pods_per_node
test_args
up_to
up_to
valid_flag
retry_time
file_content_in_loop
break_on_expected_content
|
Update werkzeug from 0.15.5 to 0.15.6 | # Local development dependencies go here
-r test.txt
black==19.3b0
isort==4.3.21
pre-commit==1.18.3
Sphinx==2.2.0
django-extensions==2.2.1
Werkzeug==0.15.5
django-debug-toolbar==2.0
# improved REPL
ipdb==0.12.2
| # Local development dependencies go here
-r test.txt
black==19.3b0
isort==4.3.21
pre-commit==1.18.3
Sphinx==2.2.0
django-extensions==2.2.1
Werkzeug==0.15.6
django-debug-toolbar==2.0
# improved REPL
ipdb==0.12.2
|
Disable a new test on mac (missing expectations). TBR=tim@chromium.org | // 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.
// All these need to be rebaselined upstream. I will do this in the next
// few hours, and after the next roll all these can be removed again.
// TODO(thakis): Remove these after the next webkit roll.
BUGTHAKIS LINUX : media/video-display-toggle.html = IMAGE
BUGTHAKIS WIN : media/video-display-toggle.html = IMAGE
| // 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.
// All these need to be rebaselined upstream. I will do this in the next
// few hours, and after the next roll all these can be removed again.
// TODO(thakis): Remove these after the next webkit roll.
BUGTHAKIS LINUX : media/video-display-toggle.html = IMAGE
BUGTHAKIS WIN : media/video-display-toggle.html = IMAGE
BUGDIMICH MAC : fast/css/background-clip-values.html = MISSING
|
Make references to Issues into links. | .. _whatsnew_0701:
v.0.7.1 (February 29, 2012)
---------------------------
This release includes a few new features and addresses over a dozen bugs in
0.7.0.
New features
~~~~~~~~~~~~
- Add ``to_clipboard`` function to pandas namespace for writing objects to
the system clipboard (#774)
- Add ``itertuples`` method to DataFrame for iterating through the rows of a
dataframe as tuples (#818)
- Add ability to pass fill_value and method to DataFrame and Series align
method (#806, #807)
- Add fill_value option to reindex, align methods (#784)
- Enable concat to produce DataFrame from Series (#787)
- Add ``between`` method to Series (#802)
- Add HTML representation hook to DataFrame for the IPython HTML notebook
(#773)
- Support for reading Excel 2007 XML documents using openpyxl
Performance improvements
~~~~~~~~~~~~~~~~~~~~~~~~
- Improve performance and memory usage of fillna on DataFrame
- Can concatenate a list of Series along axis=1 to obtain a DataFrame (#787)
| .. _whatsnew_0701:
v.0.7.1 (February 29, 2012)
---------------------------
This release includes a few new features and addresses over a dozen bugs in
0.7.0.
New features
~~~~~~~~~~~~
- Add ``to_clipboard`` function to pandas namespace for writing objects to
the system clipboard (GH774_)
- Add ``itertuples`` method to DataFrame for iterating through the rows of a
dataframe as tuples (GH818_)
- Add ability to pass fill_value and method to DataFrame and Series align
method (GH806_, GH807_)
- Add fill_value option to reindex, align methods (GH784_)
- Enable concat to produce DataFrame from Series (GH787_)
- Add ``between`` method to Series (GH802_)
- Add HTML representation hook to DataFrame for the IPython HTML notebook
(GH773_)
- Support for reading Excel 2007 XML documents using openpyxl
Performance improvements
~~~~~~~~~~~~~~~~~~~~~~~~
- Improve performance and memory usage of fillna on DataFrame
- Can concatenate a list of Series along axis=1 to obtain a DataFrame (GH787_)
|
Fix building on MingW32 (François Kooman) | IF (WIN32)
ADD_LIBRARY(visca SHARED libvisca.c libvisca_win32.c)
SET_TARGET_PROPERTIES(visca PROPERTIES COMPILE_FLAGS "/DDLL_EXPORTS=1")
ELSE()
ADD_LIBRARY(visca SHARED libvisca.c libvisca_posix.c)
SET_TARGET_PROPERTIES(visca PROPERTIES SOVERSION 0.2.0)
ENDIF()
INSTALL(TARGETS visca DESTINATION lib${LIB_SUFFIX})
INSTALL(FILES libvisca.h DESTINATION include/libvisca) | IF (WIN32)
ADD_LIBRARY(visca SHARED libvisca.c libvisca_win32.c)
SET_TARGET_PROPERTIES(visca PROPERTIES COMPILE_FLAGS "-DDLL_EXPORTS=1")
ELSE()
ADD_LIBRARY(visca SHARED libvisca.c libvisca_posix.c)
SET_TARGET_PROPERTIES(visca PROPERTIES SOVERSION 0.2.0)
ENDIF()
INSTALL(TARGETS visca DESTINATION lib${LIB_SUFFIX})
INSTALL(FILES libvisca.h DESTINATION include/libvisca) |
Add comment regarding CBuilderX 1.0 Update 1 | Feb 27, 2003 - Xerces C and Borland C++ Compiler v 5.5.1
========================================================
- changes for Xerces C 2.2.0
How to build dll with Win95 support (tasm32 required, so only for BCB5):
make -f Xerces-all.mak -DWITHASM=Y
Aug 23, 2002 - Xerces C and Borland C++ Compiler v 5.5.1
========================================================
Before build:
MakeBuildDirs.bat
How to build dll (without deprecated DOM API) and tests:
make -f Xerces-all.mak
How to build dll (with deprecated DOM API, approx. 300k larger) and tests:
make -f Xerces-all.mak -DWITHDEPRDOM=Y
Vitaly Prapirny (marl@mebius.net)
| Feb 27, 2003 - Xerces C and Borland C++ Compiler v 5.5.1
========================================================
- changes for Xerces C 2.2.0
How to build dll with Win95 support (tasm32 required, so only for BCB5):
make -f Xerces-all.mak -DWITHASM=Y
Aug 23, 2002 - Xerces C and Borland C++ Compiler v 5.5.1
========================================================
Before build:
MakeBuildDirs.bat
How to build dll (without deprecated DOM API) and tests:
make -f Xerces-all.mak
How to build dll (with deprecated DOM API, approx. 300k larger) and tests:
make -f Xerces-all.mak -DWITHDEPRDOM=Y
Vitaly Prapirny (marl@mebius.net)
Sep 30, 2004 - Xerces C and Borland C++ Compiler v 5.6.2 (CBuilderX 1.0 Update 1)
========================================================
The Update 1 for CBuilderX 1.0 renames the make.exe found in the bin directory
to bmake.exe, and adds make.exe (from GNU). To be able to compile Xerces
rename bmake.exe back to make.exe
|
Update pytest from 3.6.3 to 3.6.4 | PyYAML==3.13
pytest==3.6.3
pytest-asyncio==0.8.0
pytest-cov==2.5.1
docker-py==1.10.6
| PyYAML==3.13
pytest==3.6.4
pytest-asyncio==0.8.0
pytest-cov==2.5.1
docker-py==1.10.6
|
Update dependency sphinx to v3.2.1 | -r ../requirements.txt
sphinx==3.2.0
sphinx_rtd_theme==0.5.0
sphinxcontrib-svg2pdfconverter
| -r ../requirements.txt
sphinx==3.2.1
sphinx_rtd_theme==0.5.0
sphinxcontrib-svg2pdfconverter
|
Fix a minor ReST issue in the new changelog | What's New In FormEncode 2.0
==============================
This article explains the latest changes in `FormEncode` version 2.0.0
compared to its predecessor, `FormEncode` 1.3.0
Changelog
---------
- `FormEncode` can now run on Python 3.6 and higher without needing to run 2to3 first.
- `FormEncode` 2.0 is no longer compatible with Python 2.6 and 3.2 to 3.5. If
you need Python 2.6 or 3.2 to 3.5 compatibility please use FormEncode 1.3.
You might also try FormEncode 2.0.0a1 which supports Python 2.6 and Python
3.3-3.5
- This will be the last major version to support Python 2.7
- Add strict flag to USPostalCode to raise error on postal codes that has too
many digits instead of just truncating
- Various Python 3 fixes
- Serbian latin translation
- Changed License to MIT
- Dutch, UK, Greek and South Korean postal code format fixes
- Add postal code formats for Switzerland, Cyprus, Faroe Islands, San Marino, Ukraine and Vatican City.
- Add ISODateTimeConverter validator
- Add ability to target htmlfill to particular form or ignore a form
- Fix format errors in some translations
- The version of the library can be checked using formencode.__version__
| What's New In FormEncode 2.0
============================
This article explains the latest changes in `FormEncode` version 2.0.0
compared to its predecessor, `FormEncode` 1.3.0
Changelog
---------
- `FormEncode` can now run on Python 3.6 and higher without needing to run 2to3 first.
- `FormEncode` 2.0 is no longer compatible with Python 2.6 and 3.2 to 3.5.
If you need Python 2.6 or 3.2 to 3.5 compatibility please use `FormEncode` 1.3.
You might also try `FormEncode` 2.0.0a1 which supports Python 2.6 and Python 3.3-3.5.
- This will be the last major version to support Python 2.7
- Add strict flag to USPostalCode to raise error on postal codes that has too
many digits instead of just truncating
- Various Python 3 fixes
- Serbian latin translation
- Changed License to MIT
- Dutch, UK, Greek and South Korean postal code format fixes
- Add postal code formats for Switzerland, Cyprus, Faroe Islands, San Marino, Ukraine and Vatican City.
- Add ISODateTimeConverter validator
- Add ability to target htmlfill to particular form or ignore a form
- Fix format errors in some translations
- The version of the library can be checked using formencode.__version__
|
Update pytest from 3.6.0 to 3.7.4 | # Runtime requirements
--requirement requirements.txt
# Documentation
Sphinx==1.7.8
#testing
pytest==3.6.0
pytest-cov==2.5.1
| # Runtime requirements
--requirement requirements.txt
# Documentation
Sphinx==1.7.8
#testing
pytest==3.7.4
pytest-cov==2.5.1
|
Update pytest from 3.3.0 to 3.3.2 | # Runtime requirements
--requirement requirements.txt
#testing
pytest==3.3.0
pytest-cov==2.5.1
webtest==2.0.29
httpretty==0.8.14
coveralls==1.2.0
mock==2.0.0
#wheel
wheel==0.30.0 | # Runtime requirements
--requirement requirements.txt
#testing
pytest==3.3.2
pytest-cov==2.5.1
webtest==2.0.29
httpretty==0.8.14
coveralls==1.2.0
mock==2.0.0
#wheel
wheel==0.30.0 |
Revert "pin specific versions of cascadetoml & tomlkit, temporarily" | # For string compression
huffman
# For nvm.toml
cascadetoml==0.3.1
tomlkit==0.7.2
jinja2
typer
sh
click
cpp-coveralls
requests
requests-cache
# For translate check
polib
# For pre-commit
pyyaml
black
# for combining the Nordic SoftDevice with CircuitPython
intelhex
| # For string compression
huffman
# For nvm.toml
cascadetoml
jinja2
typer
sh
click
cpp-coveralls
requests
requests-cache
# For translate check
polib
# For pre-commit
pyyaml
black
# for combining the Nordic SoftDevice with CircuitPython
intelhex
|
Update sphinx-rtd-theme from 0.3.0 to 0.3.1 | sphinx==1.7.4
sphinx-rtd-theme==0.3.0
sphinx-argparse==0.2.2 | sphinx==1.7.4
sphinx-rtd-theme==0.3.1
sphinx-argparse==0.2.2 |
Bump psutil from 1.2.1 to 5.6.6 in /python/python_a_byte_of | Jinja2==2.7.2
MarkupSafe==0.18
PyYAML==3.10
ansible==1.5.4
argparse==1.2.1
chardet==2.0.1
defer==1.0.6
httplib2==0.8
ipython==2.1.0
paramiko==1.10.1
psutil==1.2.1
pycrypto==2.6.1
pycups==1.9.66
pycurl==7.19.3
pygobject==3.12.0
pysmbc==1.0.14.1
pysqlite==2.6.3
python-apt==0.9.3.5
python-debian==0.1.21-nmu2ubuntu2
pyxdg==0.25
six==1.5.2
stevedore==0.15
virtualenv==1.11.6
virtualenv-clone==0.2.5
virtualenvwrapper==4.3
wsgiref==0.1.2
| Jinja2==2.7.2
MarkupSafe==0.18
PyYAML==3.10
ansible==1.5.4
argparse==1.2.1
chardet==2.0.1
defer==1.0.6
httplib2==0.8
ipython==2.1.0
paramiko==1.10.1
psutil==5.6.6
pycrypto==2.6.1
pycups==1.9.66
pycurl==7.19.3
pygobject==3.12.0
pysmbc==1.0.14.1
pysqlite==2.6.3
python-apt==0.9.3.5
python-debian==0.1.21-nmu2ubuntu2
pyxdg==0.25
six==1.5.2
stevedore==0.15
virtualenv==1.11.6
virtualenv-clone==0.2.5
virtualenvwrapper==4.3
wsgiref==0.1.2
|
Add a note to only include .po file | put bitcoin.po and bitcoin.mo files at:
locale/<langcode>/LC_MESSAGES/bitcoin.mo and .po
.po is the sourcefile
.mo is the compiled translation
| put bitcoin.po and bitcoin.mo files at:
locale/<langcode>/LC_MESSAGES/bitcoin.mo and .po
.po is the sourcefile
.mo is the compiled translation
Note: pull requests should only include the .po file. Do not include .mo file |
Update pytest to v7.1.1 (from v7.0.1) | coverage==6.3.2
freezegun==1.2.1
pytest==7.0.1
pytest-cov==3.0.0
requests-mock==1.9.3
| coverage==6.3.2
freezegun==1.2.1
pytest==7.1.1
pytest-cov==3.0.0
requests-mock==1.9.3
|
Update django-suit-dashboard from 2.0.4 to 2.0.5 | django-app-settings==0.2.5
django-suit-dashboard==2.0.4
python-dateutil==2.6.0
requests==2.18.1
archan==2.0.1
dependenpy==3.2.0
| django-app-settings==0.2.5
django-suit-dashboard==2.0.5
python-dateutil==2.6.0
requests==2.18.1
archan==2.0.1
dependenpy==3.2.0
|
Update version number for 5.5.90 GIT_SILENT | project(breeze-gtk)
set(PROJECT_VERSION "5.4.95")
set(PROJECT_VERSION_MAJOR 5)
cmake_minimum_required(VERSION 3.2)
find_package(ECM 0.0.9 REQUIRED NO_MODULE)
include(FeatureSummary)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} "${CMAKE_SOURCE_DIR}/cmake")
include(KDEInstallDirs)
add_subdirectory(Breeze-dark-gtk)
add_subdirectory(Breeze-gtk)
add_subdirectory(kconf_update)
find_package(GTKEngine)
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
| project(breeze-gtk)
set(PROJECT_VERSION "5.5.90")
set(PROJECT_VERSION_MAJOR 5)
cmake_minimum_required(VERSION 3.2)
find_package(ECM 0.0.9 REQUIRED NO_MODULE)
include(FeatureSummary)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} "${CMAKE_SOURCE_DIR}/cmake")
include(KDEInstallDirs)
add_subdirectory(Breeze-dark-gtk)
add_subdirectory(Breeze-gtk)
add_subdirectory(kconf_update)
find_package(GTKEngine)
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
Upgrade dependency botocore to ==1.4.36 | base58==0.2.3
boto3==1.3.1
botocore==1.4.35
docutils==0.12
futures==3.0.5
hjson==1.5.6
jmespath==0.9.0
lambda-packages==0.5.0
python-dateutil==2.5.3
python-slugify==1.2.0
requests[security]>=2.10.0
six==1.10.0
tqdm==4.7.6
Werkzeug==0.11.10
wheel==0.29.0
wsgi-request-logger==0.4.5
| base58==0.2.3
boto3==1.3.1
botocore==1.4.36
docutils==0.12
futures==3.0.5
hjson==1.5.6
jmespath==0.9.0
lambda-packages==0.5.0
python-dateutil==2.5.3
python-slugify==1.2.0
requests[security]>=2.10.0
six==1.10.0
tqdm==4.7.6
Werkzeug==0.11.10
wheel==0.29.0
wsgi-request-logger==0.4.5
|
Add matplotlib as a requirement. | numpy>=1.8
scipy>=0.17
xarray
nose>=1.3
Shapely>=1.3
netcdf4
pyyaml
numpydoc
jinja2
| numpy>=1.8
scipy>=0.17
matplotlib
xarray
nose>=1.3
Shapely>=1.3
netcdf4
pyyaml
numpydoc
jinja2
|
Update django from 1.10.6 to 1.11 | dj-config-url==0.1.1
dj-database-url==0.4.2
dj-static==0.0.6
Django==1.10.6
django-crispy-forms==1.6.1
django-registration-redux==1.4
-e git://github.com/AASHE/django-tagulous@4f7dd6c04be0c70ccb5e23ca5652815bf3bb0258#egg=django_tagulous
djangorestframework==3.6.2
gunicorn==19.7.1
psycopg2==2.7.1
python-decouple==3.0
social-auth-app-django==1.1.0 | dj-config-url==0.1.1
dj-database-url==0.4.2
dj-static==0.0.6
Django==1.11
django-crispy-forms==1.6.1
django-registration-redux==1.4
-e git://github.com/AASHE/django-tagulous@4f7dd6c04be0c70ccb5e23ca5652815bf3bb0258#egg=django_tagulous
djangorestframework==3.6.2
gunicorn==19.7.1
psycopg2==2.7.1
python-decouple==3.0
social-auth-app-django==1.1.0 |
Bump numpy from 1.12.1 to 1.19.1 | numpy==1.12.1
tqdm==4.48.2
setuptools==50.1.0
Cython==0.29.21
| numpy==1.19.1
tqdm==4.48.2
setuptools==50.1.0
Cython==0.29.21
|
Update django-redis from 4.8.0 to 4.9.0 | # These requirements are only necessary when developing on Oscar.
# development
Werkzeug==0.14.1
django-debug-toolbar==1.9.1
django-extensions==2.0.0
psycopg2==2.7.4
# Sandbox
Pillow==5.0.0
Whoosh==2.7.4
django-environ==0.4.4
django-redis==4.8.0
pysolr==3.7.0
redis==2.10.6
requests==2.18.4
uWSGI==2.0.17
whitenoise==3.3.1
# Linting
flake8==3.5.0
flake8-debugger==3.1.0
flake8-blind-except==0.1.1
isort==4.3.4
# Helpers
pyprof2calltree==1.4.3
ipdb==0.11
ipython==5.5.0
# Country data
pycountry==18.2.23
| # These requirements are only necessary when developing on Oscar.
# development
Werkzeug==0.14.1
django-debug-toolbar==1.9.1
django-extensions==2.0.0
psycopg2==2.7.4
# Sandbox
Pillow==5.0.0
Whoosh==2.7.4
django-environ==0.4.4
django-redis==4.9.0
pysolr==3.7.0
redis==2.10.6
requests==2.18.4
uWSGI==2.0.17
whitenoise==3.3.1
# Linting
flake8==3.5.0
flake8-debugger==3.1.0
flake8-blind-except==0.1.1
isort==4.3.4
# Helpers
pyprof2calltree==1.4.3
ipdb==0.11
ipython==5.5.0
# Country data
pycountry==18.2.23
|
Update pytest from 3.2.2 to 3.2.3 | flake8==3.4.1
pytest==3.2.2
pytest-cov==2.5.1
pytest-catchlog==1.2.2
docker-py==1.10.6
coveralls==1.2.0
Sphinx==1.6.4
lz4==0.10.1
xxhash==1.0.1
python-snappy==0.5.1
sphinxcontrib-asyncio==0.2.0
sphinxcontrib-spelling==2.3.0
alabaster==0.7.10
diff-cover==0.9.12
setuptools>=34.4.0
| flake8==3.4.1
pytest==3.2.3
pytest-cov==2.5.1
pytest-catchlog==1.2.2
docker-py==1.10.6
coveralls==1.2.0
Sphinx==1.6.4
lz4==0.10.1
xxhash==1.0.1
python-snappy==0.5.1
sphinxcontrib-asyncio==0.2.0
sphinxcontrib-spelling==2.3.0
alabaster==0.7.10
diff-cover==0.9.12
setuptools>=34.4.0
|
Update pytest from 3.6.3 to 3.6.4 | bumpversion==0.5.3
coverage==4.5.1
flake8==3.5.0
pytest==3.6.3
pytz==2018.5
Sphinx==1.7.6
tox==3.1.2
| bumpversion==0.5.3
coverage==4.5.1
flake8==3.5.0
pytest==3.6.4
pytz==2018.5
Sphinx==1.7.6
tox==3.1.2
|
Update pip from 9.0.2 to 9.0.3 | 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
pytz==2018.3
| pip==9.0.3
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
pytz==2018.3
|
Update SysLog to 2.0.0 (21) | Categories:System
License:GPLv2+
Web Site:https://github.com/Tortel/SysLog/blob/HEAD/Readme.md
Source Code:https://github.com/Tortel/SysLog
Issue Tracker:https://github.com/Tortel/SysLog/issues
Auto Name:SysLog
Summary:Capture log files
Description:
Records various log types, compresses them and saves them as currently as a tar
file. The logs are saved under the primary external storage folders named by the
date and time.
.
Repo Type:git
Repo:https://github.com/Tortel/SysLog
Build:1.9.0,19
commit=3807e4a82ab8a0cea3be0534a7b85d522f5a8d00
subdir=app
gradle=yes
Build:1.9.1,20
commit=v1.9.1
subdir=app
gradle=yes
Maintainer Notes:
This is GPLv2+ as given in the sourcecode, root LICENSE file is just GPLv2/2+ license text.
.
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:1.9.1
Current Version Code:20
| Categories:System
License:GPLv2+
Web Site:https://github.com/Tortel/SysLog/blob/HEAD/Readme.md
Source Code:https://github.com/Tortel/SysLog
Issue Tracker:https://github.com/Tortel/SysLog/issues
Auto Name:SysLog
Summary:Capture log files
Description:
Records various log types, compresses them and saves them as currently as a tar
file. The logs are saved under the primary external storage folders named by the
date and time.
.
Repo Type:git
Repo:https://github.com/Tortel/SysLog
Build:1.9.0,19
commit=3807e4a82ab8a0cea3be0534a7b85d522f5a8d00
subdir=app
gradle=yes
Build:1.9.1,20
commit=v1.9.1
subdir=app
gradle=yes
Build:2.0.0,21
commit=v2.0.0
subdir=app
gradle=yes
Maintainer Notes:
This is GPLv2+ as given in the sourcecode, root LICENSE file is just GPLv2/2+ license text.
.
Auto Update Mode:Version v%v
Update Check Mode:Tags
Current Version:2.0.0
Current Version Code:21
|
Update pre-commit from 1.18.1 to 1.18.2 | # Local development dependencies go here
-r test.txt
black==19.3b0
isort==4.3.21
pre-commit==1.18.1
Sphinx==2.1.2
django-extensions==2.2.1
Werkzeug==0.15.5
django-debug-toolbar==2.0
# improved REPL
ipdb==0.12.2
| # Local development dependencies go here
-r test.txt
black==19.3b0
isort==4.3.21
pre-commit==1.18.2
Sphinx==2.1.2
django-extensions==2.2.1
Werkzeug==0.15.5
django-debug-toolbar==2.0
# improved REPL
ipdb==0.12.2
|
Add missing linkage to -lutil | add_lldb_library(lldbPluginProcessNetBSD PLUGIN
NativeProcessNetBSD.cpp
NativeRegisterContextNetBSD.cpp
NativeRegisterContextNetBSD_x86_64.cpp
NativeThreadNetBSD.cpp
LINK_LIBS
lldbHost
lldbSymbol
lldbTarget
lldbUtility
lldbPluginProcessPOSIX
lldbPluginProcessUtility
LINK_COMPONENTS
Support
)
| add_lldb_library(lldbPluginProcessNetBSD PLUGIN
NativeProcessNetBSD.cpp
NativeRegisterContextNetBSD.cpp
NativeRegisterContextNetBSD_x86_64.cpp
NativeThreadNetBSD.cpp
LINK_LIBS
lldbHost
lldbSymbol
lldbTarget
lldbUtility
lldbPluginProcessPOSIX
lldbPluginProcessUtility
util
LINK_COMPONENTS
Support
)
|
Add install target to generated Makefile | cmake_minimum_required(VERSION 3.0)
project(input-locale-switch)
find_library(CARBON_FRAMEWORK Carbon)
if(NOT CARBON_FRAMEWORK)
message(FATAL_ERROR "Carbon not found")
endif()
find_library(APPKIT_FRAMEWORK AppKit)
find_library(COCOA_FRAMEWORK Cocoa)
set(APP_HEADERS
input_source_controller.h
pre.h
utils.h
)
set(APP_SOURCES
input_source_controller.cpp
main.cpp
utils.cpp
)
source_group(Headers FILES ${APP_HEADERS})
source_group(Sources FILES ${APP_SOURCES})
add_executable(input-source-switch ${APP_SOURCES} ${APP_HEADERS})
target_link_libraries(input-source-switch ${APPKIT_FRAMEWORK} ${CARBON_FRAMEWORK} ${COCOA_FRAMEWORK})
| cmake_minimum_required(VERSION 3.0)
project(input-locale-switch)
find_library(CARBON_FRAMEWORK Carbon)
if(NOT CARBON_FRAMEWORK)
message(FATAL_ERROR "Carbon not found")
endif()
find_library(APPKIT_FRAMEWORK AppKit)
find_library(COCOA_FRAMEWORK Cocoa)
set(APP_HEADERS
input_source_controller.h
pre.h
utils.h
)
set(APP_SOURCES
input_source_controller.cpp
main.cpp
utils.cpp
)
source_group(Headers FILES ${APP_HEADERS})
source_group(Sources FILES ${APP_SOURCES})
add_executable(input-source-switch ${APP_SOURCES} ${APP_HEADERS})
target_link_libraries(input-source-switch ${APPKIT_FRAMEWORK} ${CARBON_FRAMEWORK} ${COCOA_FRAMEWORK})
install(TARGETS input-source-switch DESTINATION bin)
|
Update cryptography from 1.8.2 to 1.9 | bcrypt==3.1.3
coverage==4.4.1
cryptography==1.8.2
motor==1.1
pymongo==3.4.0
pytest==3.1.0
pytest-cov==2.5.1
tornado==4.5.1
| bcrypt==3.1.3
coverage==4.4.1
cryptography==1.9
motor==1.1
pymongo==3.4.0
pytest==3.1.0
pytest-cov==2.5.1
tornado==4.5.1
|
Install myst_parser for markdown docs | awacs>=2.0.0
sphinx==4.2.0
sphinx_rtd_theme==1.0.0
readthedocs-sphinx-search==0.1.1
| awacs>=2.0.0
myst_parser==0.16.1
sphinx==4.2.0
sphinx_rtd_theme==1.0.0
readthedocs-sphinx-search==0.1.1
|
Build EnhancedDisassembly as a shared library too. | include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_llvm_library(EnhancedDisassembly
../../include/llvm-c/EnhancedDisassembly.h
EDMain.cpp
)
set_target_properties(EnhancedDisassembly
PROPERTIES
LINKER_LANGUAGE CXX)
| include_directories(${CMAKE_CURRENT_BINARY_DIR})
set(SOURCES
../../include/llvm-c/EnhancedDisassembly.h
EDMain.cpp
)
set(LLVM_LINK_COMPONENTS mcdisassembler)
if( LLVM_TARGETS_TO_BUILD MATCHES X86 )
list(APPEND LLVM_LINK_COMPONENTS x86asmprinter x86disassembler)
endif()
if( LLVM_TARGETS_TO_BUILD MATCHES ARM )
list(APPEND LLVM_LINK_COMPONENTS armasmprinter armdisassembler)
endif()
# TODO: Process EnhancedDisassembly.exports
if( NOT WIN32 AND LLVM_ENABLE_PIC )
set(bsl ${BUILD_SHARED_LIBS})
set(BUILD_SHARED_LIBS ON)
add_llvm_library(EnhancedDisassembly ${SOURCES})
set_property(TARGET EnhancedDisassembly PROPERTY
OUTPUT_NAME "EnhancedDisassembly")
set(BUILD_SHARED_LIBS ${bsl})
set(EnhancedDisassembly_STATIC_TARGET_NAME EnhancedDisassembly_static)
else()
set(EnhancedDisassembly_STATIC_TARGET_NAME EnhancedDisassembly)
endif()
if( NOT BUILD_SHARED_LIBS )
add_llvm_library(${EnhancedDisassembly_STATIC_TARGET_NAME} ${SOURCES})
set_property(TARGET ${EnhancedDisassembly_STATIC_TARGET_NAME} PROPERTY
OUTPUT_NAME "EnhancedDisassembly")
endif()
|
Update beautifulsoup4 from 4.5.3 to 4.6.0 | appdirs==1.4.3
args==0.1.0
beautifulsoup4==4.5.3
clint==0.5.1
colorama==0.3.9
ConfigArgParse==0.11.0
docutils==0.13.1
markdown2==2.3.4
packaging==16.8
pkginfo==1.4.1
py==1.4.33
Pygments==2.2.0
pyparsing==2.2.0
pytest==3.0.7
requests==2.13.0
requests-toolbelt==0.7.1
six==1.10.0
twine==1.8.1
| appdirs==1.4.3
args==0.1.0
beautifulsoup4==4.6.0
clint==0.5.1
colorama==0.3.9
ConfigArgParse==0.11.0
docutils==0.13.1
markdown2==2.3.4
packaging==16.8
pkginfo==1.4.1
py==1.4.33
Pygments==2.2.0
pyparsing==2.2.0
pytest==3.0.7
requests==2.13.0
requests-toolbelt==0.7.1
six==1.10.0
twine==1.8.1
|
Update gunicorn requirement from ~=20.0 to ~=20.1 | # Note that App Engine / Cloud Build's default pip cache is overly aggressive
# with GitHub dependency URLs like these. If I push a new commit to the branch
# in one of these URLs, Cloud Build still uses the old cached version.
# https://cloud.google.com/appengine/docs/standard/python3/specifying-dependencies
#
# Use this to bust that cache: gcloud -q beta app deploy --no-cache ...
git+https://github.com/dvska/gdata-python3.git#egg=gdata
google-cloud-logging~=2.3.1
gunicorn~=20.0
mox3~=1.1
# this includes everything in setup.py's install_requires.
# https://caremad.io/posts/2013/07/setup-vs-requirement/#developing-reusable-things-or-how-not-to-repeat-yourself
.
| # Note that App Engine / Cloud Build's default pip cache is overly aggressive
# with GitHub dependency URLs like these. If I push a new commit to the branch
# in one of these URLs, Cloud Build still uses the old cached version.
# https://cloud.google.com/appengine/docs/standard/python3/specifying-dependencies
#
# Use this to bust that cache: gcloud -q beta app deploy --no-cache ...
git+https://github.com/dvska/gdata-python3.git#egg=gdata
google-cloud-logging~=2.3.1
gunicorn~=20.1
mox3~=1.1
# this includes everything in setup.py's install_requires.
# https://caremad.io/posts/2013/07/setup-vs-requirement/#developing-reusable-things-or-how-not-to-repeat-yourself
.
|
Update yarl from 1.2.6 to 1.3.0 | pycparser==2.19
aioamqp==0.12.0
aiobotocore==0.10.0
aiodns==1.1.1
aiohttp==3.4.4
async-timeout==3.0.1
attrs==18.2.0
botocore==1.12.49
cchardet==2.1.4
chardet==3.0.4
codecov==2.0.15
colorama==0.4.1
coverage==4.5.2
docutils==0.14
execnet==1.5.0
jmespath==0.9.3
multidict==4.5.2
mypy==0.650
packaging==18.0
protobuf==3.6.1
pycares==2.3.0
pycodestyle==2.4.0
py==1.7.0
pyparsing==2.3.0
pytest==4.0.1
pytest-cov==2.6.0
pytest-forked==0.2
pytest-xdist==1.24.1
python-dateutil==2.7.5
pytz==2018.7
readme-renderer==24.0
requests==2.20.1
six==1.12.0
tzlocal==1.5.1
ujson==1.35
uvloop==0.11.3
yarl==1.2.6
| pycparser==2.19
aioamqp==0.12.0
aiobotocore==0.10.0
aiodns==1.1.1
aiohttp==3.4.4
async-timeout==3.0.1
attrs==18.2.0
botocore==1.12.49
cchardet==2.1.4
chardet==3.0.4
codecov==2.0.15
colorama==0.4.1
coverage==4.5.2
docutils==0.14
execnet==1.5.0
jmespath==0.9.3
multidict==4.5.2
mypy==0.650
packaging==18.0
protobuf==3.6.1
pycares==2.3.0
pycodestyle==2.4.0
py==1.7.0
pyparsing==2.3.0
pytest==4.0.1
pytest-cov==2.6.0
pytest-forked==0.2
pytest-xdist==1.24.1
python-dateutil==2.7.5
pytz==2018.7
readme-renderer==24.0
requests==2.20.1
six==1.12.0
tzlocal==1.5.1
ujson==1.35
uvloop==0.11.3
yarl==1.3.0
|
Add version numbers to requirement.txt | youtube-dl
tornado
| backports-abc==0.4
backports.ssl-match-hostname==3.5.0.1
certifi==2016.2.28
singledispatch==3.4.0.3
six==1.10.0
tornado==4.3
youtube-dl==2016.3.27
|
Update expected GCC test failures | # Expected failures from running s2wasm on the linked GCC torture test output
# files.
# Unknown symbol (likely an external symbol).
20030714-1.c.s
20041212-1.c.s
20041218-1.c.s
20060905-1.c.s
20071108-1.c.s
20080424-1.c.s
20080522-1.c.s
20101011-1.c.s
960117-1.c.s
990628-1.c.s
eeprof-1.c.s
loop-11.c.s
loop-5.c.s
memcpy-2.c.s
memset-1.c.s
memset-2.c.s
memset-3.c.s
pr24716.c.s
pr28289.c.s
pr34456.c.s
pr34768-1.c.s
pr34768-2.c.s
pr43784.c.s
pr47237.c.s
pr47337.c.s
pr51877.c.s
pr51933.c.s
pr54937.c.s
pr56982.c.s
pr58209.c.s
pr58365.c.s
pr58570.c.s
strcmp-1.c.s
strcpy-1.c.s
strlen-1.c.s
strncmp-1.c.s
struct-cpy-1.c.s
# Block address taken.
20071220-1.c.s
20071220-2.c.s
| # Expected failures from running s2wasm on the linked GCC torture test output
# files.
# Unknown symbol (likely an external symbol).
20060905-1.c.s # $s-384
pr24716.c.s # $W
pr54937.c.s # $exit
pr58209.c.s $buf-4
# Unknown symbol ($abort, $stdout, $stderr).
921110-1.c.s
fprintf-1.c.s
gofast.c.s
# Block address taken.
20071220-1.c.s
20071220-2.c.s
|
Add changelog entry for audit logging header extraction improvement | ```release-note:improvement
audit-logging: **(Enterprise Only)** Audit logs will now include select HTTP headers in each logs payload. Those headers are: `Forwarded`, `Via`, `X-Forwarded-For`, `X-Forwarded-Host` and `X-Forwarded-Proto`.
```
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.