Skip to content

Commit cbfedb6

Browse files
authored
Merge pull request #54 from carver/multifix
A bunch of little patches
2 parents 8206797 + b7baeca commit cbfedb6

File tree

2 files changed

+22
-35
lines changed

2 files changed

+22
-35
lines changed

.gitignore

Lines changed: 18 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ develop-eggs
1818
.installed.cfg
1919
lib
2020
lib64
21+
pip-wheel-metadata
2122
venv*
2223

2324
# Installer logs
@@ -55,59 +56,43 @@ chains
5556

5657
# tox/pytest cache
5758
.cache
59+
.pytest_cache
5860

5961
# Test output logs
6062
logs
61-
### JetBrains template
62-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
63-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
64-
65-
# User-specific stuff:
66-
.idea/workspace.xml
67-
.idea/tasks.xml
68-
.idea/dictionaries
69-
.idea/vcs.xml
70-
.idea/jsLibraryMappings.xml
71-
72-
# Sensitive or high-churn files:
73-
.idea/dataSources.ids
74-
.idea/dataSources.xml
75-
.idea/dataSources.local.xml
76-
.idea/sqlDataSources.xml
77-
.idea/dynamic.xml
78-
.idea/uiDesigner.xml
79-
80-
# Gradle:
81-
.idea/gradle.xml
82-
.idea/libraries
83-
84-
# Mongo Explorer plugin:
85-
.idea/mongoSettings.xml
8663

8764
# VIM temp files
8865
*.sw[op]
8966

9067
# mypy
9168
.mypy_cache
9269

70+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
71+
# For a more precise, explicit template, see:
72+
# https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
73+
74+
## General
75+
.idea/*
76+
.idea_modules/*
77+
9378
## File-based project format:
9479
*.iws
9580

96-
## Plugin-specific files:
81+
## IntelliJ
82+
out/
9783

98-
# IntelliJ
99-
/out/
100-
.idea*
84+
## Plugin-specific files:
10185

102-
#pip wheel metadata
103-
pip-wheel-metadata
86+
### mpeltonen/sbt-idea plugin
87+
.idea_modules/
10488

105-
# JIRA plugin
89+
### JIRA plugin
10690
atlassian-ide-plugin.xml
10791

108-
# Crashlytics plugin (for Android Studio and IntelliJ)
92+
### Crashlytics plugin (for Android Studio and IntelliJ)
10993
com_crashlytics_export_strings.xml
11094
crashlytics.properties
11195
crashlytics-build.properties
11296
fabric.properties
11397

98+
# END JetBrains section

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"flake8==3.7.9",
1616
"isort>=4.2.15,<5",
1717
"mypy==0.770",
18-
"pydocstyle>=3.0.0,<4",
18+
"pydocstyle>=5.0.0,<6",
1919
],
2020
'doc': [
2121
"Sphinx>=1.6.5,<2",
22-
"sphinx_rtd_theme>=0.1.9",
22+
"sphinx_rtd_theme>=0.1.9,<1",
2323
"towncrier>=19.2.0, <20",
2424
],
2525
'dev': [
@@ -70,6 +70,8 @@
7070
'Intended Audience :: Developers',
7171
'License :: OSI Approved :: MIT License',
7272
'Natural Language :: English',
73+
'Operating System :: MacOS',
74+
'Operating System :: POSIX',
7375
'Programming Language :: Python :: 3',
7476
'Programming Language :: Python :: 3.6',
7577
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)