aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tasks.py4
-rw-r--r--tox.ini3
-rw-r--r--vectors/setup.py1
3 files changed, 4 insertions, 4 deletions
diff --git a/tasks.py b/tasks.py
index c124560e..c205ac88 100644
--- a/tasks.py
+++ b/tasks.py
@@ -84,11 +84,11 @@ def release(version):
invoke.run("git push --tags")
invoke.run("python setup.py sdist")
- invoke.run("python vectors/setup.py sdist")
+ invoke.run("cd vectors/ && python setup.py sdist bdist_wheel")
invoke.run(
"twine upload -s dist/cryptography-{0}* "
- "dist/cryptography_vectors-{0}*".format(version)
+ "vectors/dist/cryptography_vectors-{0}*".format(version)
)
token = getpass.getpass("Input the Jenkins token: ")
diff --git a/tox.ini b/tox.ini
index eaebd5c6..eb8e2750 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,8 +7,8 @@ deps =
iso8601
pretend
pytest
+ ./vectors
commands =
- pip install -e vectors
coverage run --source=cryptography/,tests/ -m pytest --capture=no --strict {posargs}
coverage report -m
@@ -36,7 +36,6 @@ commands =
# coverage.py on pypy.
[testenv:pypy]
commands =
- pip install -e vectors
py.test --capture=no --strict {posargs}
[testenv:pep8]
diff --git a/vectors/setup.py b/vectors/setup.py
index 13b27c7d..ce01e132 100644
--- a/vectors/setup.py
+++ b/vectors/setup.py
@@ -14,6 +14,7 @@
from __future__ import absolute_import, division, print_function
import os
+
from setuptools import setup, find_packages
='#n175'>175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258