Skip to content

Commit

Permalink
bump versions, update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeUrban committed Jan 20, 2021
1 parent 498bffd commit 8be9c15
Show file tree
Hide file tree
Showing 8 changed files with 1,216 additions and 663 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ psycopg2-binary = "*"
stellar-sdk = "~=2.10.0"
django-cors-headers = "*"
toml = "*"
pyjwt = "*"
pyjwt = "==1.7.1"
cryptography = "*"

[requires]
Expand Down
581 changes: 298 additions & 283 deletions Pipfile.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
author = "Jake Urban"

# The short X.Y version
version = "1.1.5"
version = "1.2.0"
# The full version, including alpha/beta/rc tags
release = "1.1.5"
release = "1.2.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ django-model-utils
django<3.0
djangorestframework
psycopg2-binary
pyjwt
pyjwt==1.7.1
stellar-sdk~=2.10.0
toml
whitenoise
9 changes: 0 additions & 9 deletions example/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,10 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pytest = "*"
pytest-django = "*"
pytest-cov = "*"
codecov = "*"
watchdog = "<0.10"

[packages]
django = "<3.0"
django-environ = "*"
gunicorn = "*"
whitenoise = "*"
psycopg2-binary = "*"
django-cors-headers = "*"
django-polaris = {path = "/code", editable = true}

[requires]
Expand Down
521 changes: 165 additions & 356 deletions example/Pipfile.lock

Large diffs are not rendered by default.

738 changes: 738 additions & 0 deletions example/server/Pipfile.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="django-polaris",
version="1.1.5",
version="1.2.0",
description="An extendable Django server for Stellar Ecosystem Proposals",
long_description=long_description,
long_description_content_type="text/x-rst",
Expand Down Expand Up @@ -43,29 +43,29 @@
"aiohttp-sse-client==0.1.7",
"async-timeout==3.0.1; python_full_version >= '3.5.3'",
"attrs==20.3.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"certifi==2020.11.8",
"cffi==1.14.3",
"certifi==2020.12.5",
"cffi==1.14.4",
"chardet==3.0.4",
"crc16==0.1.1",
"cryptography==3.2.1",
"cryptography==3.3.1",
"django==2.2.17",
"django-cors-headers==3.5.0",
"django-cors-headers==3.6.0",
"django-environ==0.4.5",
"django-model-utils==4.0.0",
"django-model-utils==4.1.1",
"djangorestframework==3.12.2",
"idna==2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"mnemonic==0.19",
"multidict==5.0.2; python_version >= '3.5'",
"multidict==5.1.0; python_version >= '3.6'",
"psycopg2-binary==2.8.6",
"pycparser==2.20; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pyjwt==1.7.1",
"pynacl==1.3.0",
"pytz==2020.4",
"requests==2.25.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'",
"pynacl==1.4.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pytz==2020.5",
"requests==2.25.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'",
"six==1.15.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"sqlparse==0.4.1; python_version >= '3.5'",
"stellar-base-sseclient==0.0.21",
"stellar-sdk==2.10.0",
"stellar-sdk==2.10.1",
"toml==0.10.2",
"typing-extensions==3.7.4.3; python_version < '3.8'",
"urllib3==1.26.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
Expand Down

0 comments on commit 8be9c15

Please sign in to comment.