Skip to content

Commit

Permalink
Merge pull request ethereum#54 from carver/multifix
Browse files Browse the repository at this point in the history
A bunch of little patches
  • Loading branch information
carver authored Jan 20, 2021
2 parents 8206797 + b7baeca commit cbfedb6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 35 deletions.
51 changes: 18 additions & 33 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ develop-eggs
.installed.cfg
lib
lib64
pip-wheel-metadata
venv*

# Installer logs
Expand Down Expand Up @@ -55,59 +56,43 @@ chains

# tox/pytest cache
.cache
.pytest_cache

# Test output logs
logs
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff:
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/vcs.xml
.idea/jsLibraryMappings.xml

# Sensitive or high-churn files:
.idea/dataSources.ids
.idea/dataSources.xml
.idea/dataSources.local.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml

# Gradle:
.idea/gradle.xml
.idea/libraries

# Mongo Explorer plugin:
.idea/mongoSettings.xml

# VIM temp files
*.sw[op]

# mypy
.mypy_cache

# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# For a more precise, explicit template, see:
# https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

## General
.idea/*
.idea_modules/*

## File-based project format:
*.iws

## Plugin-specific files:
## IntelliJ
out/

# IntelliJ
/out/
.idea*
## Plugin-specific files:

#pip wheel metadata
pip-wheel-metadata
### mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
### JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
### Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# END JetBrains section
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"flake8==3.7.9",
"isort>=4.2.15,<5",
"mypy==0.770",
"pydocstyle>=3.0.0,<4",
"pydocstyle>=5.0.0,<6",
],
'doc': [
"Sphinx>=1.6.5,<2",
"sphinx_rtd_theme>=0.1.9",
"sphinx_rtd_theme>=0.1.9,<1",
"towncrier>=19.2.0, <20",
],
'dev': [
Expand Down Expand Up @@ -70,6 +70,8 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down

0 comments on commit cbfedb6

Please sign in to comment.