Skip to content
This repository was archived by the owner on Jun 4, 2023. It is now read-only.

Commit afe3860

Browse files
committed
changelog, make upload now uses twine
1 parent 24c6b3d commit afe3860

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ wheel:
2121
docs:
2222
$(PYTHON) setup.py build_sphinx
2323

24-
upload:
25-
$(PYTHON) setup.py sdist bdist_wheel upload
24+
upload: sdist wheel
25+
twine upload dist/*
2626
@echo "Don't forget to check the doc builds on RTD!"
2727

2828
install:

docs/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
**********
44

5+
**Pyro 4.79**
6+
7+
- cython compatibility fix
8+
9+
510
**Pyro 4.78**
611

712
- stick to an older serpent library version to install as a dependency when installing on old python versions

src/Pyro4/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77
# Pyro version
8-
VERSION = "4.78"
8+
VERSION = "4.79.dev0"
99

1010
# standard object name for the Daemon object
1111
DAEMON_NAME = "Pyro.Daemon"

0 commit comments

Comments
 (0)