Skip to content

Commit b1e775a

Browse files
committed
Push v1.4.6. Fix typo
Missing comma in setup.py requirements
1 parent a08944e commit b1e775a

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
*********
44

5+
1.4.6 (2022-11-21)
6+
------------------
7+
8+
Fix
9+
^^^
10+
- Missing comma...
11+
512
1.4.5 (2022-11-21)
613
------------------
714

ghpythonremote/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.4.5"
1+
__version__ = "1.4.6"
22
__version_info__ = tuple(
33
[
44
int(num) if num.isdigit() else num

ghpythonremote_README.pdf

873 Bytes
Binary file not shown.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
data_files=[
7575
],
7676
install_requires=[
77-
'plumbum==1.7.2'
78-
'rpyc==4.1.5'
77+
'plumbum==1.7.2',
78+
'rpyc==4.1.5',
7979
],
8080
extras_require={
8181
'dev': ['check-manifest'],

0 commit comments

Comments
 (0)