Skip to content

Commit

Permalink
bump requirements & version
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeUrban committed Mar 18, 2021
1 parent 877beab commit 47def1a
Show file tree
Hide file tree
Showing 6 changed files with 185 additions and 174 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ACTIVE_SEPS=\

# Install dependencies
WORKDIR /code
RUN pip install pipenv; pipenv install --dev --system
RUN pip install pipenv; pipenv lock --clear; pipenv install --dev --system

# collect static assets
RUN python manage.py collectstatic --no-input --ignore=*.scss
Expand Down
222 changes: 112 additions & 110 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.2.0"
version = "1.3.0"
# The full version, including alpha/beta/rc tags
release = "1.2.0"
release = "1.3.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 @@ -18,6 +18,6 @@ django<3.0
djangorestframework
psycopg2-binary
pyjwt==1.7.1
stellar-sdk~=2.10.0
stellar-sdk~=2.11
toml
whitenoise
119 changes: 64 additions & 55 deletions example/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 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.2.0",
version="1.3.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 @@ -39,13 +39,13 @@
package_dir={"": "polaris"},
packages=find_packages("polaris"),
install_requires=[
"aiohttp==3.7.4; python_version >= '3.6'",
"aiohttp==3.7.4.post0; python_version >= '3.6'",
"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.12.5",
"cffi==1.14.5",
"chardet==3.0.4",
"chardet==4.0.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'",
"crc16==0.1.1",
"cryptography==3.4.6",
"django==2.2.19",
Expand All @@ -65,10 +65,10 @@
"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.11.2",
"stellar-sdk==2.11.3",
"toml==0.10.2",
"typing-extensions==3.7.4.3; python_version < '3.8'",
"urllib3==1.26.3; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
"urllib3==1.26.4; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
"whitenoise==5.2.0",
"yarl==1.6.3; python_version >= '3.6'",
],
Expand Down

0 comments on commit 47def1a

Please sign in to comment.