Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 2b30110

Browse files
Joshua Thompson-Lindleyjoshuathompsonlindley
authored andcommitted
fix?
1 parent b44c285 commit 2b30110

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ var/
1616
.installed.cfg
1717
*.egg
1818
*.manifest
19+
.DS_Store
1920
*.spec
2021
pip-log.txt
2122
pip-delete-this-directory.txt

ci/scripts/setup_worker.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ REPO=$(dirname "$REPO../")
99

1010
python3 -m pip install --upgrade pip
1111
python3 -m pip install -r $REPO/ci/config/requirements.txt
12-
python3 -m pip install -r $REPO/requirements.txt

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ requires-python = ">=3.6.1"
1010
authors = [{ name = "Overflow Digital", email = "[email protected]" }]
1111
maintainers = [
1212
{ name = "Katerina Tiddy", email = "[email protected]" },
13-
{ name = "Joshua Thompson-Lindley", email = "[email protected]" }
13+
{ name = "Joshua Thompson-Lindley", email = "[email protected]" },
1414
]
1515
description = "Next generation OpenAPI v3 Integration for Flask based APIs. Based on Flasgger."
1616
readme = "README.md"
1717
classifiers = [
1818
"Development Status :: 5 - Production/Stable",
1919
"Intended Audience :: Developers",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.6"
21+
"Programming Language :: Python :: 3.6",
2222
]
2323
keywords = ['flask', 'swagger', 'openapi', 'python', 'api', 'rest', 'openapi3']
2424
dependencies = [
2525
"Flask>=2.3.1",
2626
"PyYAML>=6.0",
2727
"jsonschema>=4.17.3",
2828
"mistune>=2.0.4",
29-
"six>=1.16.0"
29+
"six>=1.16.0",
3030
]
3131

3232
[project.urls]
@@ -55,7 +55,7 @@ include = ['flask_openapi*']
5555
"*.gif",
5656
"*.ico",
5757
"*.png",
58-
"*.map"
58+
"*.map",
5959
]
6060

6161
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)