Skip to content

Commit

Permalink
bump to version 2.3.6 (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeUrban committed Jan 19, 2023
1 parent 6ed155b commit f664884
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
2 changes: 1 addition & 1 deletion polaris/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.3.5"
__version__ = "2.3.6"
28 changes: 12 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "django-polaris"
version = "2.3.5"
version = "2.3.6"
description = "An extendable Django server for Stellar Ecosystem Proposals."
license = "Apache-2.0"
authors = ["Stellar Development Foundation <[email protected]>"]
Expand All @@ -26,9 +26,9 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
"Programming Language :: Python :: 3.10",
]
packages = [{"include" = "polaris"}]
packages = [{ "include" = "polaris" }]
exclude = ["**/*.scss", "**/tests/*"]

[tool.poetry.urls]
Expand All @@ -50,13 +50,13 @@ toml = "*"
pyjwt = "^2.1"
cryptography = "^3.4"
sqlparse = "^0.4.2"
readthedocs-sphinx-ext = { version = "^2.1", optional = true}
sphinx = { version = "^4.2", optional = true}
sphinx-rtd-theme = { version = "^1.0", optional = true}
sphinx-autodoc-typehints = { version = "*", optional = true}
readthedocs-sphinx-ext = { version = "^2.1", optional = true }
sphinx = { version = "^4.2", optional = true }
sphinx-rtd-theme = { version = "^1.0", optional = true }
sphinx-autodoc-typehints = { version = "*", optional = true }
gunicorn = { version = "*", optional = true }
psycopg2-binary = { version = "^2.9", optional = true}
watchdog = { version = "^2", optional = true}
psycopg2-binary = { version = "^2.9", optional = true }
watchdog = { version = "^2", optional = true }

[tool.poetry.dev-dependencies]
pylint = "*"
Expand All @@ -76,7 +76,7 @@ docs = [
"readthedocs-sphinx-ext",
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints"
"sphinx-autodoc-typehints",
]

[tool.coverage.run]
Expand All @@ -92,12 +92,8 @@ omit = [
"**/collectstatic/*",
"**/manage.py",
"**/.venv/*",
"**/.local/*"
"**/.local/*",
]

[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"def __str__"
]
exclude_lines = ["pragma: no cover", "raise NotImplementedError", "def __str__"]

0 comments on commit f664884

Please sign in to comment.