We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb9175 commit 20ca043Copy full SHA for 20ca043
entrypoint.sh
@@ -3,6 +3,7 @@
3
if [ "$TASK" = "publish" ]; then
4
echo "Publishing to PyPI..."
5
python setup.py sdist bdist_wheel
6
+ twine check dist/*
7
twine upload dist/* --repository-url https://upload.pypi.org/legacy/ -u "__token__" -p "$PYPI_API_TOKEN"
8
else
9
if [ "$RUN_PRE_COMMIT" == "true" ]; then
setup.py
@@ -5,7 +5,7 @@
setup(
name="django-api-versioning",
- version="0.1.1",
+ version="0.1.2",
author="Mojtaba Arvin",
10
author_email="ArvinDevDay@gmail.com",
11
description= (
@@ -29,7 +29,7 @@
29
"License :: OSI Approved :: MIT License",
30
"Operating System :: OS Independent",
31
],
32
- python_requires=">=3.9",
+ python_requires=">=3.6",
33
install_requires=[
34
"Django>=3.2",
35
0 commit comments