Skip to content

Commit 7bb0a67

Browse files
authored
General housekeeping. (#120)
* General housekeeping. - Bump python version to ^3.7 (fixes #117) - Fix read the docs rendering by adding pydantic to the docs requirements.txt (fixes #116) - Add entire .idea folder to the .gitignore Co-authored-by: Leo Kirchner <[email protected]>
1 parent 1ba6ce2 commit 7bb0a67

File tree

4 files changed

+85
-144
lines changed

4 files changed

+85
-144
lines changed

.gitignore

+1-77
Original file line numberDiff line numberDiff line change
@@ -183,48 +183,11 @@ $RECYCLE.BIN/
183183
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
184184
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
185185

186-
# User-specific stuff
187-
.idea/**/workspace.xml
188-
.idea/**/tasks.xml
189-
.idea/**/usage.statistics.xml
190-
.idea/**/dictionaries
191-
.idea/**/shelf
192-
193-
# Generated files
194-
.idea/**/contentModel.xml
195-
196-
# Sensitive or high-churn files
197-
.idea/**/dataSources/
198-
.idea/**/dataSources.ids
199-
.idea/**/dataSources.local.xml
200-
.idea/**/sqlDataSources.xml
201-
.idea/**/dynamic.xml
202-
.idea/**/uiDesigner.xml
203-
.idea/**/dbnavigator.xml
204-
205-
# Gradle
206-
.idea/**/gradle.xml
207-
.idea/**/libraries
208-
209-
# Gradle and Maven with auto-import
210-
# When using Gradle or Maven with auto-import, you should exclude module files,
211-
# since they will be recreated, and may cause churn. Uncomment if using
212-
# auto-import.
213-
# .idea/artifacts
214-
# .idea/compiler.xml
215-
# .idea/jarRepositories.xml
216-
# .idea/modules.xml
217-
# .idea/*.iml
218-
# .idea/modules
219-
# *.iml
220-
# *.ipr
186+
.idea/
221187

222188
# CMake
223189
cmake-build-*/
224190

225-
# Mongo Explorer plugin
226-
.idea/**/mongoSettings.xml
227-
228191
# File-based project format
229192
*.iws
230193

@@ -237,51 +200,12 @@ out/
237200
# JIRA plugin
238201
atlassian-ide-plugin.xml
239202

240-
# Cursive Clojure plugin
241-
.idea/replstate.xml
242-
243203
# Crashlytics plugin (for Android Studio and IntelliJ)
244204
com_crashlytics_export_strings.xml
245205
crashlytics.properties
246206
crashlytics-build.properties
247207
fabric.properties
248208

249-
# Editor-based Rest Client
250-
.idea/httpRequests
251-
252-
# Android studio 3.1+ serialized cache file
253-
.idea/caches/build_file_checksums.ser
254-
255-
### PyCharm Patch ###
256-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
257-
258-
# *.iml
259-
# modules.xml
260-
# .idea/misc.xml
261-
# *.ipr
262-
263-
# Sonarlint plugin
264-
# https://plugins.jetbrains.com/plugin/7973-sonarlint
265-
.idea/**/sonarlint/
266-
267-
# SonarQube Plugin
268-
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
269-
.idea/**/sonarIssues.xml
270-
271-
# Markdown Navigator plugin
272-
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
273-
.idea/**/markdown-navigator.xml
274-
.idea/**/markdown-navigator-enh.xml
275-
.idea/**/markdown-navigator/
276-
277-
# Cache file creation bug
278-
# See https://youtrack.jetbrains.com/issue/JBR-2257
279-
.idea/$CACHE_FILE$
280-
281-
# CodeStream plugin
282-
# https://plugins.jetbrains.com/plugin/12206-codestream
283-
.idea/codestream.xml
284-
285209
### vscode ###
286210
.vscode/*
287211

.readthedocs.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ python:
1010
version: "3.7"
1111
install:
1212
- requirements: "docs/requirements.txt"
13+
- method: "pip"
14+
path: "."

0 commit comments

Comments
 (0)