We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9b8de0 commit a4edbd3Copy full SHA for a4edbd3
scripts/clean.sh
@@ -5,3 +5,4 @@ rm -r .tox
5
rm -r build
6
rm -r dist
7
rm -r python_synology.egg-info
8
+rm -r src/python_synology.egg-info
scripts/publish.sh
@@ -14,5 +14,6 @@ python3 setup.py sdist bdist_wheel
14
15
# Push to PyPi
16
python3 -m twine upload dist/*
17
+# python3 -m twine upload --repository testpypi dist/*
18
19
# Enter credentials manually :P
setup.py
@@ -9,7 +9,7 @@
9
from setuptools import setup, find_packages
10
11
REPO_URL = "https://github.com/ProtoThis/python-synology"
12
-VERSION = "0.9.0"
+VERSION = "1.0.0"
13
with open("requirements.txt") as f:
required = f.read().splitlines()
0 commit comments