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
#... | //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"
{
... |
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, publis... | 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 right... |
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]
PK... | |
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 ... | |
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... | 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 ... |
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 sd... | 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} ${HEAD... |
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... | 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... |
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... | # 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... |
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... | 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... |
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 %... | # 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 %... |
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
s... | 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
s... |
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;... | # 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;... |
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;... | # 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;... |
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
... | 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
... |
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.... | 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.... |
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 ... | # 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 bug... |
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.
;
;===--------------------------------------------------------------... | ;===- ./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.
;
;===--------------------------------------------------------------... |
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
Rep... | 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
Rep... |
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(FRONT... | 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 ${... |
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_CATEGOR... | 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_CATEGOR... |
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_DE... |
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-autoslu... | 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-autoslu... |
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_op... | 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
b... |
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, ... | |
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-iden... | 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-id... |
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... | 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... |
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 copyrig... | |
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_definiti... | ############################################################################
# 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_definiti... |
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 b... | // 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 b... |
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`` ... | .. _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`... |
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... | 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... |
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
=======... | 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
=======... |
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 lon... | 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 longe... |
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=... | 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=... |
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(B... | 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(B... |
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
so... | 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
soci... |
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... | # 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... |
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 currentl... | 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 currentl... |
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
... | 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_CO... |
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
uti... | 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
uti... |
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 )
... |
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 t... | # 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 t... |
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
... | 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
... |
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
memc... | # 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... |
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.