Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove duplicate entry for `azavea.java` | azavea.ntp,0.1.1
azavea.pip,0.1.1
azavea.nodejs,0.3.0
azavea.git,0.1.0
azavea.nginx,0.2.1
azavea.daemontools,0.1.0
azavea.postgresql-support,0.2.0
azavea.postgresql,0.3.0
azavea.postgis,0.2.1
azavea.pgweb,0.1.1
azavea.redis,0.1.0
azavea.graphite,0.5.0
azavea.statsite,0.1.1
azavea.phantomjs,0.1.0
azavea.relp,0.1.2
azave... | azavea.ntp,0.1.1
azavea.pip,0.1.1
azavea.nodejs,0.3.0
azavea.git,0.1.0
azavea.nginx,0.2.1
azavea.daemontools,0.1.0
azavea.postgresql-support,0.2.0
azavea.postgresql,0.3.0
azavea.postgis,0.2.1
azavea.pgweb,0.1.1
azavea.redis,0.1.0
azavea.graphite,0.5.0
azavea.statsite,0.1.1
azavea.phantomjs,0.1.0
azavea.relp,0.1.2
azave... |
Add `pudb` to default python packages. | # Run with `pip install -r requirements.txt`
ipdb # pdb with ipython integrated
ipython
## Linters ##
flake8
pep8-naming
pydocstyle
# prospector
## Packaging ##
# virtualenv is included with >= Python 3.4
virtualenv
virtualenvwrapper
pip-tools
| # Run with `pip install -r requirements.txt`
ipdb # pdb with ipython integrated
ipython
pudb # best debugger around
## Linters ##
flake8
pep8-naming
pycodestyle
pydocstyle
# prospector
## Packaging ##
# virtualenv is included with >= Python 3.4
virtualenv
virtualenvwrapper
pip-tools
|
Use libstdc++ on MacOSx with Clang | cmake_minimum_required(VERSION 2.8)
find_package(FLEX)
FLEX_TARGET(count count.l ${CMAKE_CURRENT_BINARY_DIR}/count.c COMPILE_FLAGS -F)
add_executable( bench bench.c )
add_executable( pbench pbench.cxx )
add_executable( count ${FLEX_count_OUTPUTS} )
add_executable( gbench gbench.c )
add_custom_command(OUTPUT ${CMA... | cmake_minimum_required(VERSION 2.8)
find_package(FLEX)
FLEX_TARGET(count count.l ${CMAKE_CURRENT_BINARY_DIR}/count.c COMPILE_FLAGS -F)
if (CMAKE_CXX_COMPILER_ID MATCHES ".*Clang.*" AND ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++")
endif()
add_executable( ben... |
Update chalice from 1.0.2 to 1.0.3 | autoenv==1.0.0
autopep8==1.3.2
bumplus==0.0.8
bumpversion==0.5.3
chalice==1.0.2
docker-compose==1.16.1
elpy==1.15.0
epc==0.0.5
flake8==3.3.0
importmagic==0.1.7
ipdb==0.10.3
ipython==6.0.0
ipython-genutils==0.2.0
jedi==0.10.2
pre-commit==0.15.2
pylint==1.7.1
restview==2.7.0
yapf==0.16.1
| autoenv==1.0.0
autopep8==1.3.2
bumplus==0.0.8
bumpversion==0.5.3
chalice==1.0.3
docker-compose==1.16.1
elpy==1.15.0
epc==0.0.5
flake8==3.3.0
importmagic==0.1.7
ipdb==0.10.3
ipython==6.0.0
ipython-genutils==0.2.0
jedi==0.10.2
pre-commit==0.15.2
pylint==1.7.1
restview==2.7.0
yapf==0.16.1
|
Add boltons to test requirements | loompy>=3.0.5
pytest>=3.9
pytest-cov
codacy-coverage
zarr
matplotlib
sklearn
xlrd
joblib
black | loompy>=3.0.5
pytest>=3.9
pytest-cov
codacy-coverage
zarr
matplotlib
sklearn
xlrd
joblib
black
boltons
|
Update sqlalchemy from 1.3.3 to 1.3.4 | aiohttp-jinja2==1.1.1
aiohttp-security==0.4.0
aiohttp-session==2.7.0
aiohttp==3.5.4
aiomysql==0.0.20
aiopg==0.16.0
coverage==4.5.3
docker==4.0.1
flake8==3.7.7
ipdb==0.12
motor==2.0.0
pytest-cov==2.7.1
pytest-sugar==0.9.2
pytest==4.6.1
python-dateutil==2.8.0
sqlalchemy==1.3.3
trafaret==1.2.0
pymysql==0.9.3
-r requiremen... | aiohttp-jinja2==1.1.1
aiohttp-security==0.4.0
aiohttp-session==2.7.0
aiohttp==3.5.4
aiomysql==0.0.20
aiopg==0.16.0
coverage==4.5.3
docker==4.0.1
flake8==3.7.7
ipdb==0.12
motor==2.0.0
pytest-cov==2.7.1
pytest-sugar==0.9.2
pytest==4.6.1
python-dateutil==2.8.0
sqlalchemy==1.3.4
trafaret==1.2.0
pymysql==0.9.3
-r requiremen... |
Update sphinx from 1.7.3 to 1.7.4 | -r ./base.txt
sphinx==1.7.3
alagitpull==0.0.20
releases==1.4.1
| -r ./base.txt
sphinx==1.7.4
alagitpull==0.0.20
releases==1.4.1
|
Update flake8 from 3.0.4 to 3.3.0 | pip==9.0.1
wheel==0.29.0
watchdog==0.8.3
flake8==3.0.4
coverage==4.4
cryptography==1.8.1
Sphinx==1.5.5
PyYAML==3.12
| pip==9.0.1
wheel==0.29.0
watchdog==0.8.3
flake8==3.3.0
coverage==4.4
cryptography==1.8.1
Sphinx==1.5.5
PyYAML==3.12
|
Use the generic java-openjdk dependency. | apt: openjdk-7-jdk
yum: java-1.7.0-openjdk
pacman: jre7-openjdk
| apt: openjdk-7-jdk
yum: java-openjdk
pacman: jre7-openjdk
|
Clean Status Bar: run rewritemeta | Categories:Development
License:Apache2
Web Site:https://medium.com/@emmaguy/death-to-ugly-android-screenshots-48ea071d912e
Source Code:https://github.com/emmaguy/clean-status-bar
Issue Tracker:https://github.com/emmaguy/clean-status-bar/issues
Auto Name:Clean Status Bar
Summary:Tidy up your status bar before taking sc... | Categories:Development
License:Apache2
Web Site:https://medium.com/@emmaguy/death-to-ugly-android-screenshots-48ea071d912e
Source Code:https://github.com/emmaguy/clean-status-bar
Issue Tracker:https://github.com/emmaguy/clean-status-bar/issues
Auto Name:Clean Status Bar
Summary:Tidy up your status bar before taking sc... |
Bump c2cciutils from 1.1.dev20210308113838 to 1.1.dev20210315182348 | c2cciutils==1.1.dev20210308113838
| c2cciutils==1.1.dev20210315182348
|
Add number changed to uint | *** Test cases ***
*** Keywords ***
Define diameter protocol
Start Protocol Description Diameter
add number 1 message version 0x01
add number 3 message length
add number 1 message flags 0x80
add number 3 command code 257
add number 4 application id ... | *** Test cases ***
*** Keywords ***
Define diameter protocol
Start Protocol Description Diameter
uint 1 message version 0x01
uint 3 message length
uint 1 message flags 0x80
uint 3 command code 257
uint 4 application id 0
uint 4 Hop-By-... |
Update DNS man to 0.8.1 (81) | Categories:Connectivity,System
License:GPLv3
Web Site:
Source Code:https://github.com/otakuchiyan/DNSman
Issue Tracker:https://github.com/otakuchiyan/DNSman/issues
Auto Name:DNS man
Summary:Set DNS lookup server
Description:
Change the used DNS server for specific wifi networks.
.
Repo Type:git
Repo:https://github.co... | Categories:Connectivity,System
License:GPLv3
Web Site:
Source Code:https://github.com/otakuchiyan/DNSman
Issue Tracker:https://github.com/otakuchiyan/DNSman/issues
Auto Name:DNS man
Summary:Set DNS lookup server
Description:
Change the used DNS server for specific wifi networks.
.
Repo Type:git
Repo:https://github.co... |
Upgrade version of xblocks to get Field display_name property. | # Python libraries to install that are local to the mitx repo
-e common/lib/capa
-e common/lib/xmodule
-e .
# XBlock:
# Might change frequently, so put it in local-requirements.txt,
# but conceptually is an external package, so it is in a separate repo.
-e git+https://github.com/edx/XBlock.git@96d8f5f4#egg=XBlock
| # Python libraries to install that are local to the mitx repo
-e common/lib/capa
-e common/lib/xmodule
-e .
# XBlock:
# Might change frequently, so put it in local-requirements.txt,
# but conceptually is an external package, so it is in a separate repo.
-e git+https://github.com/edx/XBlock.git@2e0770ff#egg=XBlock
|
Add the original Apple License | Sample code project: Advanced NSOperations
Version: 1.0
IMPORTANT: This Apple software is supplied to you by Apple
Inc. ("Apple") in consideration of your agreement to the following
terms, and your use, installation, modification or redistribution of
this Apple software constitutes acceptance of these terms. If you ... | |
Add boost includedir as this plugin uses boost indirectly |
include_directories(${CMAKE_SOURCE_DIR}/akregator/src)
########### next target ###############
set(kontact_akregator_PART_SRCS akregator_plugin.cpp)
qt4_add_dbus_interfaces(kontact_akregator_PART_SRCS ${CMAKE_SOURCE_DIR}/akregator/src/org.kde.akregator.part.xml)
kde4_add_plugin(kontact_akregatorplugin ${kontact_... |
include_directories(${CMAKE_SOURCE_DIR}/akregator/src)
include_directories( ${Boost_INCLUDE_DIRS} )
########### next target ###############
set(kontact_akregator_PART_SRCS akregator_plugin.cpp)
qt4_add_dbus_interfaces(kontact_akregator_PART_SRCS ${CMAKE_SOURCE_DIR}/akregator/src/org.kde.akregator.part.xml)
kde4_... |
Revert "Malar Toon: use tags already" | Categories:News,Multimedia
License:GPLv3+
Web Site:https://github.com/kesavanm/malartoon
Source Code:https://github.com/kesavanm/malartoon
Issue Tracker:https://github.com/kesavanm/malartoon/issues
Auto Name:Malar Toon
Summary:Viewer for Indian Dinamalar cartoons
Description:
Picks cartoon from Dinamalar daily, a lead... | Categories:News,Multimedia
License:GPLv3+
Web Site:https://github.com/kesavanm/malartoon
Source Code:https://github.com/kesavanm/malartoon
Issue Tracker:https://github.com/kesavanm/malartoon/issues
Auto Name:Malar Toon
Summary:Viewer for Indian Dinamalar cartoons
Description:
Picks cartoon from Dinamalar daily, a lead... |
Update vent from 0.8.2 to 0.8.3 | falcon==1.4.1
falcon-cors==1.1.7
gevent==1.4.0
gunicorn==19.9.0
redis==3.2.1
vent==0.8.2
| falcon==1.4.1
falcon-cors==1.1.7
gevent==1.4.0
gunicorn==19.9.0
redis==3.2.1
vent==0.8.3
|
Change "Copyright 2001-2005" to "Copyright 2001-2006" | /*
* Copyright 2001-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... | /*
* Copyright 2001-2006 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by... |
Correct skill GID's for skills not in the marketplace | six==1.10.0
requests==2.20.0
gTTS==2.0.3
gTTS-token==1.1.3
PyAudio==0.2.11
pyee==5.0.0
SpeechRecognition==3.8.1
tornado==4.5.3
websocket-client==0.54.0
requests-futures==0.9.5
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pyserial==3.0
psutil==5.2.1
pocketsphinx==0.1.0
inflection==0.3.1
pillow==4.1.1
python-dateutil==2.6.0
pychr... | six==1.10.0
requests==2.20.0
gTTS==2.0.3
gTTS-token==1.1.3
PyAudio==0.2.11
pyee==5.0.0
SpeechRecognition==3.8.1
tornado==4.5.3
websocket-client==0.54.0
requests-futures==0.9.5
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pyserial==3.0
psutil==5.2.1
pocketsphinx==0.1.0
inflection==0.3.1
pillow==4.1.1
python-dateutil==2.6.0
pychr... |
Fix FANN dependency by locking to version | six==1.10.0
requests==2.13.0
gTTS==1.1.7
gTTS-token==1.1.1
backports.ssl-match-hostname==3.4.0.2
PyAudio==0.2.11
pyee==1.0.1
SpeechRecognition==3.7.1
tornado==4.2.1
websocket-client==0.32.0
adapt-parser==0.3.0
futures==3.0.3
requests-futures==0.9.5
parsedatetime==1.5
pyyaml==3.11
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pys... | six==1.10.0
requests==2.13.0
gTTS==1.1.7
gTTS-token==1.1.1
backports.ssl-match-hostname==3.4.0.2
PyAudio==0.2.11
pyee==1.0.1
SpeechRecognition==3.7.1
tornado==4.2.1
websocket-client==0.32.0
adapt-parser==0.3.0
futures==3.0.3
requests-futures==0.9.5
parsedatetime==1.5
pyyaml==3.11
pyalsaaudio==0.8.2
xmlrunner==1.7.7
pys... |
UPDATE RIOT.TXT FOR VERIFICATION tnx rito | c21338d9-5874-490b-9ede-b6797c092198
| f5343cd4-7f78-4619-b68a-151099cc529b
|
Add HP registrations for Wi-Fi Direct Print Services. | https://www.wi-fi.org/file/wi-fi-peer-to-peer-services-technical-specification-package-v12
Job Template attributes: Reference
------------------------------- ---------
pclm-source-resolution (resolution) [WiFiDirectPrint]
Pr... | |
Upgrade dependencies for Django projects | #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file=requirements/production.txt requirements/production.in
#
django-environ==0.4.5
django-probes==1.2.0
django==2.2.3
pytz==2019.1 # via django
sqlparse==0.3.0 # via django
uwsgi==2.0.18
{% if cookiecutte... | #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file=requirements/production.txt requirements/production.in
#
django-environ==0.4.5
django-probes==1.2.0
django==2.2.4
pytz==2019.2 # via django
sqlparse==0.3.0 # via django
uwsgi==2.0.18
{% if cookiecutte... |
Add MIT license to the project | The MIT License (MIT)
Copyright (c) 2015 MolloyLife
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, publi... | |
Fix build of entropy driver for MCUX TRNG | zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TNGA entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32_rng.c)
zephyr_sources_ifdef... | zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32_rng.c)
zephyr_sources_ifdef... |
Fix wrong file name of entropy_stm32.c | zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_NRF5_RNG entropy_nrf5.c)
zephyr_sources_ifdef(CONF... | zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c)
zephyr_sources_ifdef(CONFIG_ENTROPY_NRF5_RNG entropy_nrf5.c)
zephyr_sources_ifdef(CONF... |
Update ChronoSnap to 1.0.5 (6) | Categories:Multimedia,Office
License:MIT
Web Site:https://github.com/nathan-osman/chronosnap/blob/HEAD/README.md
Source Code:https://github.com/nathan-osman/chronosnap
Issue Tracker:https://github.com/nathan-osman/chronosnap/issues
Auto Name:ChronoSnap
Summary:Take screenshots in intervals
Description:
Capture a seque... | Categories:Multimedia,Office
License:MIT
Web Site:https://github.com/nathan-osman/chronosnap/blob/HEAD/README.md
Source Code:https://github.com/nathan-osman/chronosnap
Issue Tracker:https://github.com/nathan-osman/chronosnap/issues
Auto Name:ChronoSnap
Summary:Take screenshots in intervals
Description:
Capture a seque... |
Update Easer to 0.2.3.1 (9) | Categories:System
License:GPL-3.0+
Web Site:
Source Code:https://github.com/renyuneyun/Easer
Issue Tracker:https://github.com/renyuneyun/Easer/issues
Auto Name:Easer
Summary:Auto operation performer
Description:
Ease your life by automatically performing routine actions / operations on your
phone(s).
Chain different ... | Categories:System
License:GPL-3.0+
Web Site:
Source Code:https://github.com/renyuneyun/Easer
Issue Tracker:https://github.com/renyuneyun/Easer/issues
Auto Name:Easer
Summary:Auto operation performer
Description:
Ease your life by automatically performing routine actions / operations on your
phone(s).
Chain different ... |
Fix errors in testcase for bracket expression negation. | // Test bracket expression negations.
\[+[^]abc]*]
/\/\/ [a]
/\/\/ [d]
\ [a[d]]
/\/\/ [nomatch]
/\/\/ ][][
/\/\/ [[][
\ [perf[[ect]
/\/\/ [\{a]]
/\/\/ [\{q]
/\/\/ to [\{c] or not to &
\ to [\{q] or not to &
\ noice yeh []
\ [] yeh noice
\[ empty on purpose ]
/\/\/ [ intentiona... | // Test bracket expression negations.
\[+[^]abc]*]
/\/\/ [a]
\ [d]
\ [a[d]]
/\/\/ [nomatch]
\ [perf[[ekt]
/\/\/ to [\{c] or not to &
\ to [\{q] or not to &
\ noice yeh []
\ [] yeh noice
\[ empty on purpose ]
/\/\/ [ intentional text ]
/[a[a[d[a[da[[]]
/ []
/\/\/ ]... |
Update dependency six to v1.14.0 | flask==1.1.1
healthcheck==1.3.3
six==1.13.0
| flask==1.1.1
healthcheck==1.3.3
six==1.14.0
|
Update gevent from 1.3.0 to 1.3.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 %... | # 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 %... |
Upgrade the minimum CMake version to 3.8 | project(observable)
cmake_minimum_required(VERSION 3.2)
enable_testing()
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "cmake")
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
add_subdirectory(observable)
add_subdirectory(external)
add_subdirectory(tes... | project(observable)
cmake_minimum_required(VERSION 3.8)
enable_testing()
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "cmake")
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
add_subdirectory(observable)
add_subdirectory(external)
add_subdirectory(tes... |
Remove dependencies that should come from setup.py because we don't depend on them directly. | Fabric==1.5.1
Jinja2==2.6
PyYAML==3.10
WebOb==1.2.3
argparse==1.2.1
beautifulsoup4==4.1.3
boto==2.10.0
cloudformation==0.0.0
decorator==3.4.0
distribute==0.6.30
docopt==0.6.1
dogapi==1.2.3
ipython==0.13.1
jenkinsapi==0.1.11
lxml==3.1beta1
newrelic==1.10.2.38
path.py==3.0.1
pingdom==0.2.0
pycrypto==2.6
pyparsing==1.5.6
... | Fabric==1.5.1
Jinja2==2.6
PyYAML==3.10
WebOb==1.2.3
argparse==1.2.1
beautifulsoup4==4.1.3
boto==2.10.0
cloudformation==0.0.0
decorator==3.4.0
distribute==0.6.30
docopt==0.6.1
dogapi==1.2.3
ipython==0.13.1
jenkinsapi==0.1.11
lxml==3.1beta1
newrelic==1.10.2.38
path.py==3.0.1
pingdom==0.2.0
pycrypto==2.6
pyparsing==1.5.6
... |
Update pyflakes from 2.0.0 to 2.1.0 | tqdm==4.29.1
requests==2.21.0
requests-toolbelt==0.8.0
pycodestyle==2.4.0
pyflakes==2.0.0
schedule==0.6.0
pysocks==1.6.8
pytest==4.1.1
responses==0.10.5
future==0.17.1
six==1.12.0
huepy==0.9.8.1
| tqdm==4.29.1
requests==2.21.0
requests-toolbelt==0.8.0
pycodestyle==2.4.0
pyflakes==2.1.0
schedule==0.6.0
pysocks==1.6.8
pytest==4.1.1
responses==0.10.5
future==0.17.1
six==1.12.0
huepy==0.9.8.1
|
Update apscheduler from 3.5.1 to 3.5.2 | -e git+https://github.com/amperser/proselint.git#egg=proselint
-e git+https://github.com/charlierguo/gmail.git#egg=gmail
APScheduler==3.5.1
bumpversion==0.5.3
click==6.7
coverage==4.5.1
coveralls==1.3.0
Flask-API==1.0
Flask-Cors==3.0.4
Flask==1.0.2
Flask-Limiter==1.0.1
future==0.16.0
gunicorn==19.8.1
itsdangerous==0.24... | -e git+https://github.com/amperser/proselint.git#egg=proselint
-e git+https://github.com/charlierguo/gmail.git#egg=gmail
APScheduler==3.5.2
bumpversion==0.5.3
click==6.7
coverage==4.5.1
coveralls==1.3.0
Flask-API==1.0
Flask-Cors==3.0.4
Flask==1.0.2
Flask-Limiter==1.0.1
future==0.16.0
gunicorn==19.8.1
itsdangerous==0.24... |
Update numpy from 1.14.3 to 1.14.4 | click==6.7
h5py==2.8.0
Keras>=2.0.0
notebook==5.5.0
matplotlib==2.2.2
numpy==1.14.3
pandas==0.23.0
Pillow==5.1.0
protobuf==3.5.2.post1
requests==2.18.4
scipy==1.1.0
stevedore==1.28.0
| click==6.7
h5py==2.8.0
Keras>=2.0.0
notebook==5.5.0
matplotlib==2.2.2
numpy==1.14.4
pandas==0.23.0
Pillow==5.1.0
protobuf==3.5.2.post1
requests==2.18.4
scipy==1.1.0
stevedore==1.28.0
|
Update mako from 0.9.1 to 1.0.7 | chameleon==3.3
coverage==4.5.1
docutils==0.14
mako==0.9.1
markupsafe==0.19
nose==1.3.1
passlib==1.6.1
pastedeploy==1.5.2
paster==0.8
pygments==1.6
pyramid==1.5
pyramid-chameleon==0.1
pyramid-debugtoolbar==2.0.2
pyramid-mako==1.0.1
pyramid-tm==0.7
repoze.lru==0.6
repoze.tm2==2.0
sqlalchemy==0.9.4
transaction==1.4.3
tran... | chameleon==3.3
coverage==4.5.1
docutils==0.14
mako==1.0.7
markupsafe==0.19
nose==1.3.1
passlib==1.6.1
pastedeploy==1.5.2
paster==0.8
pygments==1.6
pyramid==1.5
pyramid-chameleon==0.1
pyramid-debugtoolbar==2.0.2
pyramid-mako==1.0.1
pyramid-tm==0.7
repoze.lru==0.6
repoze.tm2==2.0
sqlalchemy==0.9.4
transaction==1.4.3
tran... |
Disable python tests by default because the tests hit STP assertion failures. This needs to be fixed properly at some point. | option(TEST_C_API "Enable tests that test STP's public C API" ON)
if(TEST_C_API)
add_subdirectory(C)
endif()
if(ENABLE_PYTHON_INTERFACE)
option(TEST_PYTHON_API "Enable tests that test STP's public Python API" ON)
endif()
if(TEST_PYTHON_API)
add_subdirectory(python)
endif()
| option(TEST_C_API "Enable tests that test STP's public C API" ON)
if(TEST_C_API)
add_subdirectory(C)
endif()
if(ENABLE_PYTHON_INTERFACE)
option(TEST_PYTHON_API "Enable tests that test STP's public Python API" OFF)
endif()
if(TEST_PYTHON_API)
add_subdirectory(python)
endif()
|
Update pydantic to latest version | black==20.8b1
ipython==7.19.0
scrapy==2.4.1
pycodestyle==2.6.0
pydantic[dotenv]==1.7.2
pykeepass==3.2.1 | black==20.8b1
ipython==7.19.0
scrapy==2.4.1
pycodestyle==2.6.0
pydantic[dotenv]==1.7.3
pykeepass==3.2.1
|
Update dependency python-dateutil to ==2.7.3 | #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file requirements.txt requirements.in
#
boto3==1.4.5
botocore==1.5.92 # via boto3, s3transfer
certifi==2017.7.27.1 # via requests
chardet==3.0.4 # via requests
cssselect==1.0.1
docutils==0.13.1 ... | #
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file requirements.txt requirements.in
#
boto3==1.4.5
botocore==1.5.92 # via boto3, s3transfer
certifi==2017.7.27.1 # via requests
chardet==3.0.4 # via requests
cssselect==1.0.1
docutils==0.13.1 ... |
Bump click from 8.1.2 to 8.1.3 | click==8.1.2
Jinja2==3.1.1
PyYAML==5.4.1
awscli==1.22.76
requests==2.27.1
boto3==1.21.18
botocore==1.24.21
docopt==0.6.2
bcrypt==3.2.0
yq==2.14.0
rsa>=4.7 # not directly required, pinned by Snyk to avoid a vulnerability
| click==8.1.3
Jinja2==3.1.1
PyYAML==5.4.1
awscli==1.22.76
requests==2.27.1
boto3==1.21.18
botocore==1.24.21
docopt==0.6.2
bcrypt==3.2.0
yq==2.14.0
rsa>=4.7 # not directly required, pinned by Snyk to avoid a vulnerability
|
Upgrade dependency django-debug-toolbar to ==1.5 | Django==1.9.7
django-debug-toolbar==1.4
psycopg2==2.6.2
sqlparse==0.1.19
wheel==0.29.0
python-magic==0.4.12
uwsgi== 2.0.13.1
mock==2.0.0
| Django==1.9.7
django-debug-toolbar==1.5
psycopg2==2.6.2
sqlparse==0.1.19
wheel==0.29.0
python-magic==0.4.12
uwsgi== 2.0.13.1
mock==2.0.0
|
Update pytest from 6.0.0 to 6.0.1 | ansible-lint==4.2.0
docker==4.2.2
flake8==3.8.3
molecule==3.0.6
pytest==6.0.0
testinfra==5.2.2
tox==3.18.1
| ansible-lint==4.2.0
docker==4.2.2
flake8==3.8.3
molecule==3.0.6
pytest==6.0.1
testinfra==5.2.2
tox==3.18.1
|
Use the latest edx locust revision, and install the scipy dependencies for percentiles | lazy==1.2
-e git+https://github.com/edx/locust.git@e3fc3c02ec890683145fab21666117c48d782e50#egg=locustio
PyJWT==1.1.0
-r platform-requirements.txt
| lazy==1.2
-e git+https://github.com/edx/locust.git@eabaea099b738c637c3d4e1fdddd624e78932539#egg=locustio[scipy]
PyJWT==1.1.0
-r platform-requirements.txt
|
Add Sys::Load dependency for scripts/system_stats.pl | AuthCAS
BerkeleyDB
Bio::TreeIO
CGI::Ajax
CGI::Application::Dispatch
CGI::Log
Class::Accessor
Crypt::OpenSSL::Random
Crypt::OpenSSL::RSA
DBD::SQLite
DBI
DBIx::Class
Data::Compare
Data::GUID
Data::UUID
Data::Validate::URI
DateTime
DateTime::Duration
DateTime::Format::HTTP
DateTime::Format::MySQL
File::Listing
File::Slurp... | AuthCAS
BerkeleyDB
Bio::TreeIO
CGI::Ajax
CGI::Application::Dispatch
CGI::Log
Class::Accessor
Crypt::OpenSSL::Random
Crypt::OpenSSL::RSA
DBD::SQLite
DBI
DBIx::Class
Data::Compare
Data::GUID
Data::UUID
Data::Validate::URI
DateTime
DateTime::Duration
DateTime::Format::HTTP
DateTime::Format::MySQL
File::Listing
File::Slurp... |
Move note on how to beautify long eval statements to the js directory. | //first do a window.dump + "\n" to get a beautified version
var xyz = function() {
print();function(){};
}
function extractBody(f) {
var s = "" + f;
var skip = s.indexOf("{") + 2;
return s.substring(skip, s.length - 2);
}
//window.dump(extractBody(xyz) + "\n");
print(extractBody(xyz))
// va... | |
Disable tests when compiling with clang++ on Tavis CI | cmake_minimum_required (VERSION 2.8.4)
set(project_name juci)
project (${project_name})
add_subdirectory("src")
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD|OpenBSD|NetBSD")
install(FILES "${CMAKE_SOURCE_DIR}/share/juci.desktop"
DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications")
endif()
if(ENAB... | cmake_minimum_required (VERSION 2.8.4)
set(project_name juci)
project (${project_name})
add_subdirectory("src")
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD|OpenBSD|NetBSD")
install(FILES "${CMAKE_SOURCE_DIR}/share/juci.desktop"
DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications")
endif()
if(NOT ... |
Add note on gutting of prefilter to whatsnew docs. | =====================
Development version
=====================
This document describes in-flight development work.
The CodeMirror js library has been updated fron 2.23 to 2.32
this might induce a few changes in behavior of keymaps in the notebook,
especially intenting/deindenting blocks that is now bound to Ctrl+... | =====================
Development version
=====================
This document describes in-flight development work.
The CodeMirror js library has been updated fron 2.23 to 2.32
this might induce a few changes in behavior of keymaps in the notebook,
especially intenting/deindenting blocks that is now bound to Ctrl+... |
Update sphinx from 1.6.2 to 1.6.3 | sphinx==1.6.2
sphinx-rtd-theme==0.2.4
Django==1.11.2
-e .
| sphinx==1.6.3
sphinx-rtd-theme==0.2.4
Django==1.11.2
-e .
|
Update minimum versions of core Harvest components | # This file collects all required third-party applications that are needed
# to run this project. Later you can install all these apps in a row
# using pip. Example::
#
# pip install -U -r requirements.txt
# Core requirements
django>=1.4,<1.5
markdown
south
uWSGI
avocado>=2.0.2,<2.1
serrano>=2.0.1,<2.1
cilantro>=... | # This file collects all required third-party applications that are needed
# to run this project. Later you can install all these apps in a row
# using pip. Example::
#
# pip install -U -r requirements.txt
# Core requirements
django>=1.4,<1.5
markdown
south
uWSGI
avocado>=2.0.3,<2.1
serrano>=2.0.2,<2.1
cilantro>=... |
Add another competitor (and delete whitespace) | COMPETITORS / RELATED:
[ ] http://www.coderun.com/ -- aimed at running web apps; not math.
[ ] AppSoma: http://happysciencecoding.com/ -- this is similar to what I am
planning to do, but more limited... and more flexible.
This exactly competes with what I want to do. Ut oh! But exciting as
a proof of... | COMPETITORS / RELATED:
[ ] http://www.picloud.com/ -- python;
[ ] http://www.coderun.com/ -- aimed at running web apps; not math.
[ ] AppSoma: http://happysciencecoding.com/ -- this is similar to what I am
planning to do, but more limited... and more flexible.
This exactly competes with what I want to do. U... |
Update yarl from 0.14.2 to 0.15.0 | aioamqp==0.10.0
aiobotocore==0.5.1
aiohttp==2.3.3
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.9
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.550
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.2.5
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==201... | aioamqp==0.10.0
aiobotocore==0.5.1
aiohttp==2.3.3
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.9
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.550
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.2.5
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==201... |
Change to moto version that fixes query/GSI issues. | bunch>=1.0.1
boto3==1.2.2
PyYAML>=3.10
-e git+https://github.com/pcraciunoiu/moto.git@4fa7d6283d818351ed01e36521d6822a086af859#egg=moto
| bunch>=1.0.1
boto3==1.2.2
PyYAML>=3.10
-e git+https://github.com/pcraciunoiu/moto.git@0.4.20#egg=moto
|
Bump markupsafe from 2.0.1 to 2.1.0 | aniso8601==9.0.1
appdirs==1.4.4
certifi==2021.10.8
chardet==4.0.0
click==8.0.3
configparser==5.2.0
Flask==2.0.3
Flask-JWT==0.3.2
flask-restplus==0.13.0
Flask-SQLAlchemy==2.5.1
idna==3.3
itsdangerous==2.0.1
Jinja2==3.0.3
jsonschema==4.4.0
MarkupSafe==2.0.1
mysqlclient==2.1.0
passlib==1.7.4
PyJWT==2.3.0
python-dateutil==... | aniso8601==9.0.1
appdirs==1.4.4
certifi==2021.10.8
chardet==4.0.0
click==8.0.3
configparser==5.2.0
Flask==2.0.3
Flask-JWT==0.3.2
flask-restplus==0.13.0
Flask-SQLAlchemy==2.5.1
idna==3.3
itsdangerous==2.0.1
Jinja2==3.0.3
jsonschema==4.4.0
MarkupSafe==2.1.0
mysqlclient==2.1.0
passlib==1.7.4
PyJWT==2.3.0
python-dateutil==... |
Update loguru from 0.2.4 to 0.3.0 | -i https://pypi.org/simple
ansimarkup==1.4.0
better-exceptions-fork==0.2.1.post6
certifi==2018.11.29
chardet==3.0.4
colorama==0.4.1
coverage==5.0a4
coveralls==1.5.1
docopt==0.6.2
idna==2.8
loguru==0.2.4
packaging==18.0
pbr==5.1.1
pygments==2.3.1
pyparsing==2.3.1
requests==2.21.0
six==1.12.0
urllib3>=1.24.2
| -i https://pypi.org/simple
ansimarkup==1.4.0
better-exceptions-fork==0.2.1.post6
certifi==2018.11.29
chardet==3.0.4
colorama==0.4.1
coverage==5.0a4
coveralls==1.5.1
docopt==0.6.2
idna==2.8
loguru==0.3.0
packaging==18.0
pbr==5.1.1
pygments==2.3.1
pyparsing==2.3.1
requests==2.21.0
six==1.12.0
urllib3>=1.24.2
|
Add change log step to release procedures. | # -*- mode: org -*-
* Release Checklist
*** Make sure all tests pass
*** Decide on version number
*** Tag code with version (git tag -s release-VERSION head)
* Push repo and tags
*** Create version.txt with version
*** Run make release
*** Upload zip file and tarball to server (/strophe/strophejs/releases/)
*** Uplo... | # -*- mode: org -*-
* Release Checklist
*** Make sure all tests pass
*** Decide on version number
*** Update CHANGELOG.txt
*** Tag code with version (git tag -s release-VERSION head)
* Push repo and tags
*** Create version.txt with version
*** Run make release
*** Upload zip file and tarball to server (/strophe/stro... |
Update coverage from 5.0.3 to 5.1 | # ulid/requirements/test.txt
#
# Requirements for executing the test suite.
-r dev.txt
coverage==5.0.3
pytest<3.3.0; python_version < '3.4' # pyup: ignore
pytest==4.6.5; python_version == '3.4' # pyup: ignore
pytest==5.3.5; python_version > '3.4'
pytest-benchmark==3.2.3
pytest-cov==2.8.1
pytest-mock==1.6.3; python... | # ulid/requirements/test.txt
#
# Requirements for executing the test suite.
-r dev.txt
coverage==5.1
pytest<3.3.0; python_version < '3.4' # pyup: ignore
pytest==4.6.5; python_version == '3.4' # pyup: ignore
pytest==5.3.5; python_version > '3.4'
pytest-benchmark==3.2.3
pytest-cov==2.8.1
pytest-mock==1.6.3; python_v... |
Fix cmake build on osx after r235109 | set(LLVM_NO_RTTI 1)
add_lldb_library(lldbPluginProcessGDBRemote
GDBRemoteCommunication.cpp
GDBRemoteCommunicationClient.cpp
GDBRemoteCommunicationServer.cpp
GDBRemoteCommunicationServerCommon.cpp
GDBRemoteCommunicationServerLLGS.cpp
GDBRemoteCommunicationServerPlatform.cpp
GDBRemoteRegisterContext.cpp
... | set(LLVM_NO_RTTI 1)
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
include_directories(${LIBXML2_INCLUDE_DIR})
endif()
add_lldb_library(lldbPluginProcessGDBRemote
GDBRemoteCommunication.cpp
GDBRemoteCommunicationClient.cpp
GDBRemoteCommunicationServer.cpp
GDBRemoteCommunicationServerCommon.cpp
GDBRemoteCommunica... |
Rename SwiftReflectionTest Cmake target to swiftSwiftReflectionTest | set(swift_reflection_test_compile_flags
"-Xfrontend" "-enable-reflection-metadata")
add_swift_library(swiftReflectionTest SHARED IS_STDLIB
SwiftReflectionTest.swift
SWIFT_MODULE_DEPENDS Darwin
SWIFT_COMPILE_FLAGS ${swift_reflection_test_compile_flags}
INSTALL_IN_COMPONENT stdlib-experimental)
| set(swift_reflection_test_compile_flags
"-Xfrontend" "-enable-reflection-metadata")
add_swift_library(swiftSwiftReflectionTest SHARED IS_STDLIB
SwiftReflectionTest.swift
SWIFT_MODULE_DEPENDS Darwin
SWIFT_COMPILE_FLAGS ${swift_reflection_test_compile_flags}
INSTALL_IN_COMPONENT stdlib-experimental)
|
Update CV of Funkytunes to 0.1.1 (2) | AntiFeatures:NonFreeNet
Categories:Multimedia
License:GPL-3.0
Web Site:
Source Code:https://github.com/funkyg/funkytunes
Issue Tracker:https://github.com/funkyg/funkytunes/issues
Auto Name:Funkytunes
Summary:A streaming music player using torrents
Description:
Funkytunes is a BitTorrent-based music app, like Spotify o... | AntiFeatures:NonFreeNet
Categories:Multimedia
License:GPL-3.0
Web Site:
Source Code:https://github.com/funkyg/funkytunes
Issue Tracker:https://github.com/funkyg/funkytunes/issues
Auto Name:Funkytunes
Summary:A streaming music player using torrents
Description:
Funkytunes is a BitTorrent-based music app, like Spotify o... |
Exclude Welsh booking start pages | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
#
User-agent: *
Disallow: /*/leave-pot-untouched/estimate
Disallow: /*/take-whole-pot/estimate
Disallow: /*/pension-type-tool/question-2
Disallow: /*/pension-type-tool/question-3
Disallow: /*/pension-type-tool/question-4
D... | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
#
User-agent: *
Disallow: /*/leave-pot-untouched/estimate
Disallow: /*/take-whole-pot/estimate
Disallow: /*/pension-type-tool/question-2
Disallow: /*/pension-type-tool/question-3
Disallow: /*/pension-type-tool/question-4
D... |
Update flask-login from 0.4.0 to 0.4.1 | # Everything needed in production
# Flask
Flask==0.12.2
MarkupSafe==1.0
Werkzeug==0.12.2
Jinja2==2.9.6
itsdangerous==0.24
click>=5.0
# Database
Flask-SQLAlchemy==2.2
psycopg2==2.7.3.1
SQLAlchemy==1.1.13
# Migrations
Flask-Migrate==2.1.0
# Forms
Flask-WTF==0.14.2
WTForms==2.1
# Deployment
gunicorn>=19.1.1
# Assets... | # Everything needed in production
# Flask
Flask==0.12.2
MarkupSafe==1.0
Werkzeug==0.12.2
Jinja2==2.9.6
itsdangerous==0.24
click>=5.0
# Database
Flask-SQLAlchemy==2.2
psycopg2==2.7.3.1
SQLAlchemy==1.1.13
# Migrations
Flask-Migrate==2.1.0
# Forms
Flask-WTF==0.14.2
WTForms==2.1
# Deployment
gunicorn>=19.1.1
# Assets... |
Update Activity Launcher to 1.7.0 (11) | Categories:System
License:ISC
Web Site:
Source Code:https://github.com/butzist/ActivityLauncher
Issue Tracker:https://github.com/butzist/ActivityLauncher/issues
Auto Name:Activity Launcher
Summary:Create shortcuts for apps and activities
Description:
Create shortcuts for any installed app and even hidden activities to... | Categories:System
License:ISC
Web Site:
Source Code:https://github.com/butzist/ActivityLauncher
Issue Tracker:https://github.com/butzist/ActivityLauncher/issues
Auto Name:Activity Launcher
Summary:Create shortcuts for apps and activities
Description:
Create shortcuts for any installed app and even hidden activities to... |
Fix formatting of changelog entry | API Changes
* The getter and setter API of the SSL session cache (used for
session-ID based session resumption) has changed to that of
a key-value store with keys being session IDs and values
being opaque instances of `mbedtls_ssl_session`.
| API changes
* The getter and setter API of the SSL session cache (used for
session-ID based session resumption) has changed to that of
a key-value store with keys being session IDs and values
being opaque instances of `mbedtls_ssl_session`.
|
Change pywrapper shebang to /bin/sh instead of /bin/bash | #!/bin/bash
# TODO(#7843): integration tests for failure to find python / wrong version
# found / error while trying to print version
set -euo pipefail
GENERAL_FAILURE_MESSAGE="Error: The default python toolchain \
(@bazel_tools//tools/python:autodetecting_toolchain) was unable to locate a \
suitable Python interpre... | #!/bin/sh
# TODO(#7843): integration tests for failure to find python / wrong version
# found / error while trying to print version
set -euo pipefail
GENERAL_FAILURE_MESSAGE="Error: The default python toolchain \
(@bazel_tools//tools/python:autodetecting_toolchain) was unable to locate a \
suitable Python interprete... |
Add some new files to cmake | # This source file is part of the Swift.org open source project
#
# Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
# Licensed under Apache License v2.0 with Runtime Library Exception
#
# See http://swift.org/LICENSE.txt for license information
# See http://swift.org/CONTRIBUTORS.txt for Swift projec... | # This source file is part of the Swift.org open source project
#
# Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
# Licensed under Apache License v2.0 with Runtime Library Exception
#
# See http://swift.org/LICENSE.txt for license information
# See http://swift.org/CONTRIBUTORS.txt for Swift projec... |
Use official PyPI egg for `kiwisolver` | --allow-external PIL
--allow-unverified PIL
PIL
unittest2
coverage
-e git+http://github.com/enthought/traits.git#egg=traits
-e git+http://github.com/enthought/traitsui.git#egg=traitsui
-e git+http://github.com/enthought/enable.git#egg=enable
-e git+http://github.com/nucleic/kiwi.git#egg=kiwisolver
| --allow-external PIL
--allow-unverified PIL
PIL
unittest2
coverage
kiwisolver
-e git+http://github.com/enthought/traits.git#egg=traits
-e git+http://github.com/enthought/traitsui.git#egg=traitsui
-e git+http://github.com/enthought/enable.git#egg=enable
|
Add v to version number. | The process for cutting a release is as follows:
* Check out the most recent version of develop and test it, correcting any errors.
* Merge all changes from develop into master.
* Check out the master.
* Open ATT within Visual Studio and load the Installer project if not currently loaded.
* Within the Installer ... | The process for cutting a release is as follows:
* Check out the most recent version of develop and test it, correcting any errors.
* Merge all changes from develop into master.
* Check out the master.
* Open ATT within Visual Studio and load the Installer project if not currently loaded.
* Within the Installer ... |
Update django-storages from 1.7.1 to 1.7.2 | # PRECAUTION: avoid production dependencies that aren't in development
-r ./base.txt
# Django
# ------------------------------------------------------------------------------
django-storages[google]==1.7.1 # https://github.com/jschneier/django-storages
google-auth==1.6.3 # https://github.com/googleapis/google-auth-... | # PRECAUTION: avoid production dependencies that aren't in development
-r ./base.txt
# Django
# ------------------------------------------------------------------------------
django-storages[google]==1.7.2 # https://github.com/jschneier/django-storages
google-auth==1.6.3 # https://github.com/googleapis/google-auth-... |
Update sphinx from 1.6.7 to 1.7.0 | sphinx==1.6.7
releases==1.4.0
sphinx-rtd-theme==0.2.4
| sphinx==1.7.0
releases==1.4.0
sphinx-rtd-theme==0.2.4
|
Set autoname of Always On AMOLED Plugin | Categories:System
License:GPLv3+
Author Email:tomer@tomerrosenfeld.com
Web Site:
Source Code:https://github.com/rosenpin/AlwaysOnAmoledPlugin
Issue Tracker:https://github.com/rosenpin/AlwaysOnAmoledPlugin/issues
Auto Name:Plugin for Always On AMOLED
Summary:Control capacitive button lights via Always On AMOLED
Descrip... | Categories:System
License:GPLv3+
Author Email:tomer@tomerrosenfeld.com
Web Site:
Source Code:https://github.com/rosenpin/AlwaysOnAmoledPlugin
Issue Tracker:https://github.com/rosenpin/AlwaysOnAmoledPlugin/issues
Auto Name:Always On AMOLED Plugin
Summary:Control capacitive button lights via Always On AMOLED
Description... |
Update dependency pytype to v2020.11.23 | -r docs/requirements.txt
pylint==2.6.0
pytype==2020.11.12
| -r docs/requirements.txt
pylint==2.6.0
pytype==2020.11.23
|
Update sqlalchemy from 1.1.4 to 1.1.5 | aiohttp-jinja2==0.13.0
aiohttp-security==0.1.0
aiohttp-session==0.8.0
aiohttp==1.2.0
aiomysql==0.0.9
aiopg==0.13.0
coverage==4.3.1
docker-compose==1.9.0
docker-py==1.10.6
flake8==3.2.1
ipdb==0.10.1
motor==1.1
pytest-cov==2.4.0
pytest-sugar==0.8.0
pytest==3.0.5
python-dateutil==2.6.0
sqlalchemy==1.1.4
trafaret==0.7.5
ya... | aiohttp-jinja2==0.13.0
aiohttp-security==0.1.0
aiohttp-session==0.8.0
aiohttp==1.2.0
aiomysql==0.0.9
aiopg==0.13.0
coverage==4.3.1
docker-compose==1.9.0
docker-py==1.10.6
flake8==3.2.1
ipdb==0.10.1
motor==1.1
pytest-cov==2.4.0
pytest-sugar==0.8.0
pytest==3.0.5
python-dateutil==2.6.0
sqlalchemy==1.1.5
trafaret==0.7.5
ya... |
Upgrade attrs dependency from v18.2.0 to v19.1.0 | blinker == 1.4
Flask == 1.0.2
Jinja2 == 2.10
Werkzeug == 0.15.1
WTForms == 2.2.1
# data persistence
Flask-SQLAlchemy == 2.3.2
psycopg2-binary == 2.7.6.1
SQLAlchemy == 1.2.14
# command line
click == 7.0
pick == 0.6.4
arrow == 0.12.1
attrs == 18.2.0
bbcode == 1.0.32
Flask-Mail == 0.9.1
hiredis == 0.2.0
Pillow == 5.3.0... | blinker == 1.4
Flask == 1.0.2
Jinja2 == 2.10
Werkzeug == 0.15.1
WTForms == 2.2.1
# data persistence
Flask-SQLAlchemy == 2.3.2
psycopg2-binary == 2.7.6.1
SQLAlchemy == 1.2.14
# command line
click == 7.0
pick == 0.6.4
arrow == 0.12.1
attrs == 19.1.0
bbcode == 1.0.32
Flask-Mail == 0.9.1
hiredis == 0.2.0
Pillow == 5.3.0... |
Update to the latest stevedore | d2to1>=0.2.10,<0.3
pbr>=0.5,<0.6
Paste
PasteDeploy>=1.5.0
Routes>=1.12.3
amqplib>=0.6.1
anyjson>=0.2.4
argparse
eventlet>=0.9.17
greenlet>=0.3.1
httplib2
iso8601>=0.1.4
kombu>=1.0.4
netaddr
python-quantumclient>=2.2.0,<3.0.0
pyudev
sqlalchemy>=0.7.8,<=0.7.99
WebOb>=1.2
python-keystoneclient>=0.2.0
alembic>=0.4.1
oslo.c... | d2to1>=0.2.10,<0.3
pbr>=0.5,<0.6
Paste
PasteDeploy>=1.5.0
Routes>=1.12.3
amqplib>=0.6.1
anyjson>=0.2.4
argparse
eventlet>=0.9.17
greenlet>=0.3.1
httplib2
iso8601>=0.1.4
kombu>=1.0.4
netaddr
python-quantumclient>=2.2.0,<3.0.0
pyudev
sqlalchemy>=0.7.8,<=0.7.99
WebOb>=1.2
python-keystoneclient>=0.2.0
alembic>=0.4.1
oslo.c... |
Update flake8 from 3.7.6 to 3.7.7 | cookiecutter==1.6.0
sh==1.12.14
binaryornot==0.4.4
# Code quality
# ------------------------------------------------------------------------------
black==19.3b0
flake8==3.7.6
# Testing
# ------------------------------------------------------------------------------
tox==3.11.1
pytest==4.5.0
pytest_cases==1.6.2
pytest... | cookiecutter==1.6.0
sh==1.12.14
binaryornot==0.4.4
# Code quality
# ------------------------------------------------------------------------------
black==19.3b0
flake8==3.7.7
# Testing
# ------------------------------------------------------------------------------
tox==3.11.1
pytest==4.5.0
pytest_cases==1.6.2
pytest... |
Update requests-cache from 0.4.4 to 0.4.13 | Pygments==1.5
argparse==1.4.0
cssselect==0.7.1
lxml==3.7.2
pyquery==1.2.17
requests==2.0.1
requests-cache==0.4.4
elasticsearch>=2.0.0
PyYAML==3.12
python-dateutil>=2.2
nose>=1.3.3
lockfile>=0.10.2
| Pygments==1.5
argparse==1.4.0
cssselect==0.7.1
lxml==3.7.2
pyquery==1.2.17
requests==2.0.1
requests-cache==0.4.13
elasticsearch>=2.0.0
PyYAML==3.12
python-dateutil>=2.2
nose>=1.3.3
lockfile>=0.10.2
|
Update youtube-dl from 2018.3.14 to 2018.3.20 | python-telegram-bot==10.0.1
python-telegram-handler==2.0.2
boltons==18.0.0
plumbum==1.6.6
#transliterate==1.9
scdl==1.6.11
bandcamp-downloader==0.0.9.dev0
youtube-dl==2018.3.14
pydub==0.21.0
mutagen==1.40.0
patool==1.12
pyshorteners==0.6.1
Celery==4.1.0
#botanio==1.0.0
logentries==0.17
#loggly-python-handler==1.0.0
| python-telegram-bot==10.0.1
python-telegram-handler==2.0.2
boltons==18.0.0
plumbum==1.6.6
#transliterate==1.9
scdl==1.6.11
bandcamp-downloader==0.0.9.dev0
youtube-dl==2018.3.20
pydub==0.21.0
mutagen==1.40.0
patool==1.12
pyshorteners==0.6.1
Celery==4.1.0
#botanio==1.0.0
logentries==0.17
#loggly-python-handler==1.0.0
|
Update codecov from 2.0.12 to 2.0.13 | aioamqp==0.10.0
aiobotocore==0.5.2
aiohttp==2.3.7
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.12
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.560
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.3.2
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==20... | aioamqp==0.10.0
aiobotocore==0.5.2
aiohttp==2.3.7
async-timeout==2.0.0
botocore==1.7.40
chardet==3.0.4
codecov==2.0.13
coverage==4.4.2
docutils==0.14
jmespath==0.9.3
multidict==3.3.2
mypy==0.560
packaging==16.8
pycodestyle==2.3.1
py==1.5.2
pyparsing==2.2.0
pytest==3.3.2
pytest-cov==2.5.1
python-dateutil==2.6.1
pytz==20... |
Update numpy from 1.16.3 to 1.16.4 | matplotlib==3.1.0
networkx==2.3
pandas==0.24.2
hiveplot==2017.10.17.21.7
nxviz==0.6.1
numpy==1.16.3
jupyter==1.0.0
scipy==1.3.0
python-louvain==0.13
tqdm==4.32.1
| matplotlib==3.1.0
networkx==2.3
pandas==0.24.2
hiveplot==2017.10.17.21.7
nxviz==0.6.1
numpy==1.16.4
jupyter==1.0.0
scipy==1.3.0
python-louvain==0.13
tqdm==4.32.1
|
Update pytest from 3.1.3 to 3.2.0 | # Core requirements
semver==2.7.7
# Dev requirements
flake8==3.4.1
isort==4.2.15
mypy==0.521
pytest==3.1.3
pytest-cov==2.5.1
| # Core requirements
semver==2.7.7
# Dev requirements
flake8==3.4.1
isort==4.2.15
mypy==0.521
pytest==3.2.0
pytest-cov==2.5.1
|
Upgrade xapian-haystack - trunk doesn't require write permissions to search. | # Requirements to deploy this code.
akismet == 0.2.0
Django >= 1.2, < 1.3
django-haystack == 1.1.0
django-registration == 0.7
docutils >= 0.6, < 0.7
FeedParser >= 4.1, < 5.0
Jinja2 >= 2.4, < 2.5
psycopg2 >= 2.2, < 2.3
python-memcached >= 1.45, < 2.0
Sphinx >= 1.0, < 1.1
South >= 0.7, < 0.8
Unipath >= 0.2, < 0.3
xapian... | # Requirements to deploy this code.
akismet == 0.2.0
Django >= 1.2, < 1.3
django-haystack == 1.1.0
django-registration == 0.7
docutils >= 0.6, < 0.7
FeedParser >= 4.1, < 5.0
Jinja2 >= 2.4, < 2.5
psycopg2 >= 2.2, < 2.3
python-memcached >= 1.45, < 2.0
Sphinx >= 1.0, < 1.1
South >= 0.7, < 0.8
Unipath >= 0.2, < 0.3
# dja... |
Correct python module install path | # Copyright 2017 The Imaging Source Europe GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed ... | # Copyright 2017 The Imaging Source Europe GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed ... |
Update watchdog from 2.0.2 to 2.0.3 | pip==21.0.1
bumpversion==0.6.0
wheel==0.36.2
watchdog==2.0.2
flake8==3.9.1
tox==3.23.0
coverage==5.5
Sphinx==3.5.4
cryptography==3.4.7
PyYAML==5.4.1
| pip==21.0.1
bumpversion==0.6.0
wheel==0.36.2
watchdog==2.0.3
flake8==3.9.1
tox==3.23.0
coverage==5.5
Sphinx==3.5.4
cryptography==3.4.7
PyYAML==5.4.1
|
Update fonttools from 3.35.2 to 3.36.0 | FontTools[lxml,unicode,ufo]==3.35.2
fontMath==0.4.9
defcon[pens]==0.6.0
| FontTools[lxml,unicode,ufo]==3.36.0
fontMath==0.4.9
defcon[pens]==0.6.0
|
Update gitpython from 3.0.3 to 3.0.4 | bandit==1.6.2
beautifulsoup4==4.8.1
GitPython==3.0.3
codecov==2.0.15
coverage==4.5.4
ddt==1.2.1
defusedxml==0.6.0
flake8==3.7.8
internetarchive==1.8.5
mypy==0.740
nose==1.3.7
oauthlib==3.1.0
patool==1.12
pip==19.3.1
pyfiglet==0.8.post1
pylint==2.4.3
PyGithub==1.44
pywikibot==3.0.20190722
requests==2.22.0
requests-mock=... | bandit==1.6.2
beautifulsoup4==4.8.1
GitPython==3.0.4
codecov==2.0.15
coverage==4.5.4
ddt==1.2.1
defusedxml==0.6.0
flake8==3.7.8
internetarchive==1.8.5
mypy==0.740
nose==1.3.7
oauthlib==3.1.0
patool==1.12
pip==19.3.1
pyfiglet==0.8.post1
pylint==2.4.3
PyGithub==1.44
pywikibot==3.0.20190722
requests==2.22.0
requests-mock=... |
Test commit for gcov and codecov | cmake_minimum_required(VERSION 3.2)
project(2bead)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Weffc++ -g -O0")
set(CMAKE_CXX_OUTPUT_EXTENSION_REPLACE 1)
if ($ENV{TRAVIS})
set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -coverage)
endif ()
enable_testing()
add_subdirectory(src)
add_subdirec... | cmake_minimum_required(VERSION 3.2)
project(2bead)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Weffc++ -g -O0")
set(CMAKE_CXX_OUTPUT_EXTENSION_REPLACE 1)
if ($ENV{TRAVIS})
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -coverage")
endif ()
enable_testing()
add_subdirectory(src)
add_subdir... |
Remove minimum version requirement for CMake, not really needed. | cmake_minimum_required(VERSION 3.0)
project(test_hopscotch_map)
enable_testing()
find_package(Boost 1.54.0 REQUIRED COMPONENTS unit_test_framework)
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Werror -Wall -Wextra -Wold-sty... | project(test_hopscotch_map)
enable_testing()
find_package(Boost 1.54.0 REQUIRED COMPONENTS unit_test_framework)
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Werror -Wall -Wextra -Wold-style-cast -g --coverage -DTSL_DEBUG")
... |
Update Logcat Reader to 1.2.1 (17) | Categories:System
License:MIT
Web Site:
Source Code:https://github.com/darshanparajuli/LogcatReader
Issue Tracker:https://github.com/darshanparajuli/LogcatReader/issues
Auto Name:Logcat Reader
Summary:A simple app to view logs
Description:
Logcat Reader makes it easy to view and save the device logs.
.
Repo Type:git
... | Categories:System
License:MIT
Web Site:
Source Code:https://github.com/darshanparajuli/LogcatReader
Issue Tracker:https://github.com/darshanparajuli/LogcatReader/issues
Auto Name:Logcat Reader
Summary:A simple app to view logs
Description:
Logcat Reader makes it easy to view and save the device logs.
.
Repo Type:git
... |
Update flake8-builtins from 1.0.post0 to 1.1.0 | check-manifest==0.36
flake8==3.5.0
flake8-bugbear==18.2.0
flake8-builtins==1.0.post0
flake8-docstrings==1.3.0
flake8-isort==2.5
flake8-future-import==0.4.4
flake8-print==3.1.0
m2r==0.1.13
pep8-naming==0.5.0
pydocstyle==2.1.1
pygments==2.2.0
pylint==1.8.3
readme-renderer==17.4
| check-manifest==0.36
flake8==3.5.0
flake8-bugbear==18.2.0
flake8-builtins==1.1.0
flake8-docstrings==1.3.0
flake8-isort==2.5
flake8-future-import==0.4.4
flake8-print==3.1.0
m2r==0.1.13
pep8-naming==0.5.0
pydocstyle==2.1.1
pygments==2.2.0
pylint==1.8.3
readme-renderer==17.4
|
Add google-api-python-client to prevent build failing. Not sure if correct solution... | pytest>=2.5
sphinx>=1.1
colour>=0.0.5
mock>=1.0
pep8>=1.5.7
| pytest>=2.5
sphinx>=1.1
colour>=0.0.5
mock>=1.0
pep8>=1.5.7
google-api-python-client>=1.4.2
|
Update sphinx from 1.8.0 to 1.8.1 | attrs==18.1.0
bandit==1.5.1
check-manifest==0.37
coveralls==1.5.0
codecov==2.0.15
flake8-bugbear==18.8.0;python_version>="3.5"
flake8-docstrings==1.3.0
flake8-import-order==0.18
pycodestyle==2.3.1
flake8==3.5.0
hypothesis==3.71.10
mccabe==0.6.1
mypy==0.600
pytest==3.8.0
pep8-naming==0.7.0
pipdeptree==0.13.0
pipenv==201... | attrs==18.1.0
bandit==1.5.1
check-manifest==0.37
coveralls==1.5.0
codecov==2.0.15
flake8-bugbear==18.8.0;python_version>="3.5"
flake8-docstrings==1.3.0
flake8-import-order==0.18
pycodestyle==2.3.1
flake8==3.5.0
hypothesis==3.71.10
mccabe==0.6.1
mypy==0.600
pytest==3.8.0
pep8-naming==0.7.0
pipdeptree==0.13.0
pipenv==201... |
Update pytest from 3.8.2 to 3.9.1 | coverage==4.5.1
jedi==0.13.1
pylint==1.9.3; python_version < '3'
pylint==2.1.1; python_version >= '3'
pytest==3.8.2
pytest-cov==2.6.0
sphinx==1.8.1
sphinx-rtd-theme==0.4.2
tox==3.5.2
rope==0.11.0
mypy==0.641; python_version >= '3.5'
pytest-asyncio==0.9.0; python_version >= '3.5'
| coverage==4.5.1
jedi==0.13.1
pylint==1.9.3; python_version < '3'
pylint==2.1.1; python_version >= '3'
pytest==3.9.1
pytest-cov==2.6.0
sphinx==1.8.1
sphinx-rtd-theme==0.4.2
tox==3.5.2
rope==0.11.0
mypy==0.641; python_version >= '3.5'
pytest-asyncio==0.9.0; python_version >= '3.5'
|
Update CV of Recurrence to 1.1.1 (11) | Categories:Time
License:Apache2
Web Site:https://github.com/jonasbleyl/Recurrence/blob/HEAD/README.md
Source Code:https://github.com/jonasbleyl/Recurrence
Issue Tracker:https://github.com/jonasbleyl/Recurrence/issues
Auto Name:Recurrence
Summary:Get reminded about notifications
Description:
Get reminded about notifica... | Categories:Time
License:Apache2
Web Site:https://github.com/jonasbleyl/Recurrence/blob/HEAD/README.md
Source Code:https://github.com/jonasbleyl/Recurrence
Issue Tracker:https://github.com/jonasbleyl/Recurrence/issues
Auto Name:Recurrence
Summary:Get reminded about notifications
Description:
Get reminded about notifica... |
Add instructions to build the code | To compile the code, follow the instructions below
- mkdir build
- cd build
- cmake ..
- make
To run the code, go to the build directory and do
./point_operations
./histogram_equalization
| |
Use python docker module versus docker_py | docker_py
Flask
Flask_Script
mysqlclient
psycopg2
psycopg2_binary
PyMySQL
pyspark
requests
SQLAlchemy
Werkzeug
| docker
Flask
Flask_Script
mysqlclient
psycopg2
psycopg2_binary
PyMySQL
pyspark
requests
SQLAlchemy
Werkzeug
|
Fix URL for theblues req | # until https://github.com/juju/theblues/pull/46 and https://github.com/juju/theblues/pull/47
# are merged, this depends on the following fork:
git+https://github.com/johnsca/theblues/tree/libjuju#egg=theblues
| # until https://github.com/juju/theblues/pull/46 and https://github.com/juju/theblues/pull/47
# are merged, this depends on the following fork:
git+https://github.com/johnsca/theblues@libjuju#egg=theblues
|
Change to new production script | 05 2 * * 1,2,3,4,5 /shared/technology/eclipselink/beginBuild.sh
0,30 6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 * * * /shared/technology/eclipselink/continuousBuild.sh
| 05 2 * * 1,2,3,4,5 /shared/technology/eclipselink/beginBuild.sh
0,30 6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 * * * /shared/technology/eclipselink/bootstrap.sh cb > /shared/technology/eclipselink/logs/cb.log
|
Update JSQLParser license info and url | The D2RQ/Update code is under Apache 2.0 license.
The project requires the following jars in addition to the jars required by D2RQ:
1. jsqlparser - http://jsqlparser.sourceforge.net/, GNU LGPL License
Must be downloaded from http://d2rqupdate.cs.technion.ac.il/downloads/jsqlparser.rar,
since the code was modified to ... | The D2RQ/Update code is under Apache 2.0 license.
The project requires the following jars in addition to the jars required by D2RQ:
1. jsqlparser - https://github.com/JSQLParser/JSqlParser, LGPL V2.1 and Apache Software License, Version 2.0
2. jgrahpt - http://www.jgrapht.org/, GNU LGPL License
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.