Skip to content

Commit

Permalink
v0.1.9
Browse files Browse the repository at this point in the history
Pipenv & requirements update
  • Loading branch information
elarroba committed Nov 27, 2022
1 parent 6cf59c5 commit ea427cc
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ downloads
src_eggs
develop-eggs
.installed.cfg
django_xmlrpc.egg-info/
django_xmlrpc.egg-info/
.idea
13 changes: 13 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
django = ">=2.2"

[dev-packages]

[requires]
python_version = "3.10"
python_full_version = "3.10.8"
46 changes: 46 additions & 0 deletions Pipfile.lock

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

2 changes: 1 addition & 1 deletion django_xmlrpc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""
VERSION = (0, 1, 8)
VERSION = (0, 1, 9)
__version__ = '.'.join(map(str, VERSION))

default_app_config = 'django_xmlrpc.apps.XMLRPCConfig'
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-i https://pypi.org/simple
asgiref==3.5.2 ; python_version >= '3.7'
django==4.1.3
sqlparse==0.4.3 ; python_version >= '3.5'

0 comments on commit ea427cc

Please sign in to comment.