Skip to content

Commit 3ae6079

Browse files
Merge pull request #126 from networktocode/develop
Release 1.6.0 into main
2 parents c398c61 + 5cb7c95 commit 3ae6079

File tree

6 files changed

+92
-148
lines changed

6 files changed

+92
-148
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ jobs:
112112
strategy:
113113
fail-fast: true
114114
matrix:
115-
# pytest-redis only supported in >3.7
116115
python-version: ["3.7", "3.8", "3.9", "3.10"]
117116
runs-on: "ubuntu-20.04"
118117
env:

.gitignore

Lines changed: 1 addition & 77 deletions
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

Lines changed: 2 additions & 0 deletions
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: "."

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v1.6.0 - 2022-07-09
4+
5+
### Changed
6+
7+
- #120 - Dropped support for Python 3.6, new minimum is Python 3.7
8+
39
## v1.5.1 - 2022-06-30
410

511
### Added

0 commit comments

Comments
 (0)