Skip to content

Commit

Permalink
Merge branch 'master' of github.com:CuriousLearner/django-phone-verif…
Browse files Browse the repository at this point in the history
…y into build-publish-docs

* 'master' of github.com:CuriousLearner/django-phone-verify:
  upgrade(requirements) to latest
  fix: Make ruff happy :)
  Update README.rst
  fix: Remove deprecation warning for auto-app discovery in Django 3.2+ (#91)
  docs(README): fix link for License + downloads badge
  chore: Build and publish docs (#89)
  • Loading branch information
CuriousLearner committed Nov 18, 2023
2 parents 10580d7 + f516957 commit b20d750
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 18 deletions.
9 changes: 6 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
django-phone-verify
===================

.. image:: https://travis-ci.org/CuriousLearner/django-phone-verify.svg?branch=master
:target: https://travis-ci.org/CuriousLearner/django-phone-verify
.. image:: https://github.com/github/docs/actions/workflows/main.yml/badge.svg?branch=master
:target: https://github.com/CuriousLearner/django-phone-verify/actions

.. image:: https://coveralls.io/repos/github/CuriousLearner/django-phone-verify/badge.svg?branch=master
:target: https://coveralls.io/github/CuriousLearner/django-phone-verify?branch=master

.. image:: https://pypip.in/license/django-phone-verify/badge.svg
.. image:: https://img.shields.io/pypi/l/django-phone-verify
:target: https://pypi.python.org/pypi/django-phone-verify/
:alt: License

.. image:: https://static.pepy.tech/badge/django-phone-verify?period=total&units=international_system&left_color=black&right_color=darkgreen&left_text=Downloads
:target: https://pepy.tech/project/django-phone-verify

.. image:: https://img.shields.io/badge/Made%20with-Python-1f425f.svg
:target: https://www.python.org/

Expand Down
4 changes: 3 additions & 1 deletion phone_verify/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-
import django

default_app_config = "phone_verify.apps.PhoneVerificationConfig"
if django.VERSION < (3, 2):
default_app_config = "phone_verify.apps.PhoneVerificationConfig"
10 changes: 5 additions & 5 deletions requirements/common.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Core Stuff
# -------------------------------------
PyJWT==2.6.0
PyJWT==2.8.0

# Configuration
# -------------------------------------
python-dotenv==0.21.0
python-dotenv==1.0.0

# Phone number related Stuff
# -------------------------------------
phonenumbers==8.13.2
django-phonenumber-field==7.0.1
twilio==7.15.4
phonenumbers==8.13.25
django-phonenumber-field==7.2.0
twilio==8.10.2
nexmo==2.5.2
4 changes: 2 additions & 2 deletions requirements/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

# Core Stuff
# -------------------------------------
Django==4.1.7
Django==4.2.7
djangorestframework==3.14.0

# Code quality
#--------------------------------------
pre-commit==2.20.0
pre-commit==3.5.0
14 changes: 7 additions & 7 deletions requirements/testing.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Testing
# -------------------------------------
pytest==7.2.0
pytest-django==4.5.2
pytest-cov==4.0.0
pytest==7.4.3
pytest-django==4.7.0
pytest-cov==4.1.0

django-dynamic-fixture==3.1.2
pytest-mock==3.10.0
tox==4.3.5
ruff==0.0.252
django-dynamic-fixture==4.0.1
pytest-mock==3.12.0
tox==4.11.3
ruff==0.1.6

0 comments on commit b20d750

Please sign in to comment.