Skip to content

Commit 76b6e26

Browse files
committed
Migrating package creation to using build.
1 parent ff6628f commit 76b6e26

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ safetest:
3030
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; make test
3131

3232
publish: install-test-requirements
33-
pipenv run python setup.py sdist
33+
pipenv run python -m build --sdist .
3434
pipenv run twine upload dist/mocket-$(VERSION).tar.gz
3535
pipenv run anaconda upload dist/mocket-$(VERSION).tar.gz
3636

Pipfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ gevent = "*"
2020
sure = "*"
2121
pook = "*"
2222
flake8 = "*"
23-
twine = "*"
24-
anaconda-client = "*"
25-
pipfile = "*"
26-
wheel = "*"
2723
xxhash = "*"
2824
aiohttp = "*"
2925
async-timeout = "*"
26+
pipfile = "*"
27+
build = "*"
28+
wheel = "*"
29+
twine = "*"
30+
anaconda-client = "*"
3031

3132
[requires]
3233
python_version = "3"

0 commit comments

Comments
 (0)