Skip to content

Commit

Permalink
MAINT: Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma committed Feb 5, 2021
1 parent cc9c058 commit 92cf1fb
Show file tree
Hide file tree
Showing 7 changed files with 131 additions and 70 deletions.
15 changes: 7 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pre-commit run --all-files
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v3.4.0
hooks:
- id: check-ast
- id: check-byte-order-marker
Expand All @@ -11,14 +11,13 @@ repos:
- id: check-json
- id: check-yaml
- id: debug-statements
- id: detect-aws-credentials
- id: detect-private-key
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.782
rev: v0.800
hooks:
- id: mypy
args: [--ignore-missing-imports]
Expand All @@ -27,24 +26,24 @@ repos:
hooks:
- id: seed-isort-config
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.4.2
rev: v5.7.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 19.10b0
rev: 20.8b1
hooks:
- id: black
- repo: https://github.com/asottile/pyupgrade
rev: v2.7.2
rev: v2.9.0
hooks:
- id: pyupgrade
args: [--py36-plus]
- repo: https://github.com/asottile/blacken-docs
rev: v1.8.0
rev: v1.9.2
hooks:
- id: blacken-docs
additional_dependencies: [black==19.10b0]
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v1.11.0
rev: v1.16.0
hooks:
- id: setup-cfg-fmt
57 changes: 0 additions & 57 deletions requirements-dev.txt

This file was deleted.

File renamed without changes.
119 changes: 119 additions & 0 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
#
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile dev.in
#
attrs==20.3.0
# via
# pytest
# pytest-mypy
bleach==3.3.0
# via readme-renderer
certifi==2020.12.5
# via requests
cffi==1.14.4
# via cryptography
chardet==4.0.0
# via requests
colorama==0.4.4
# via twine
coverage==5.4
# via pytest-cov
cryptography==3.3.1
# via secretstorage
docutils==0.16
# via readme-renderer
filelock==3.0.12
# via pytest-mypy
flake8==3.8.4
# via pytest-flake8
idna==2.10
# via requests
iniconfig==1.1.1
# via pytest
jeepney==0.6.0
# via
# keyring
# secretstorage
keyring==22.0.1
# via twine
mccabe==0.6.1
# via
# flake8
# pytest-mccabe
mypy-extensions==0.4.3
# via mypy
mypy==0.800
# via pytest-mypy
packaging==20.9
# via
# bleach
# pytest
pkginfo==1.7.0
# via twine
pluggy==0.13.1
# via pytest
py==1.10.0
# via pytest
pycodestyle==2.6.0
# via flake8
pycparser==2.20
# via cffi
pyflakes==2.2.0
# via flake8
pygments==2.7.4
# via readme-renderer
pyparsing==2.4.7
# via packaging
pytest-cov==2.11.1
# via -r dev.in
pytest-flake8==1.0.7
# via -r dev.in
pytest-mccabe==2.0
# via -r dev.in
pytest-mypy==0.8.0
# via -r dev.in
pytest==6.2.2
# via
# -r dev.in
# pytest-cov
# pytest-flake8
# pytest-mccabe
# pytest-mypy
readme-renderer==28.0
# via twine
requests-toolbelt==0.9.1
# via twine
requests==2.25.1
# via
# requests-toolbelt
# twine
rfc3986==1.4.0
# via twine
secretstorage==3.3.0
# via keyring
six==1.15.0
# via
# bleach
# cryptography
# readme-renderer
toml==0.10.2
# via pytest
tqdm==4.56.0
# via twine
twine==3.3.0
# via -r dev.in
typed-ast==1.4.2
# via mypy
typing-extensions==3.7.4.3
# via mypy
urllib3==1.26.3
# via requests
webencodings==0.5.1
# via bleach
wheel==0.36.2
# via -r dev.in

# The following packages are considered to be unsafe in a requirements file:
# setuptools
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development
Topic :: Utilities
download_url = https://github.com/MartinThoma/banana-gym
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
# Third party
from setuptools import setup

setup(install_requires=["gym>=0.2.3", "pandas", "cfg_load"],)
setup(
install_requires=["gym>=0.2.3", "pandas", "cfg_load"],
)
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = begin,py{36},end
envlist = begin,py{37,38,39},end

[testenv:begin]
commands = coverage erase
Expand All @@ -15,9 +15,6 @@ commands =
pytest .
pydocstyle

[testenv:py36]
basepython = python3.6

[testenv:end]
commands =
coverage report --omit='.tox/*'
Expand Down

0 comments on commit 92cf1fb

Please sign in to comment.