Skip to content

Commit e092aa8

Browse files
committed
Merge remote-tracking branch 'origin/master' into development
2 parents bcef271 + 9b8f655 commit e092aa8

File tree

8 files changed

+16
-13
lines changed

8 files changed

+16
-13
lines changed

.circleci/config.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ orbs:
66
jobs:
77
test:
88
docker:
9-
- image: circleci/python:3
9+
- image: circleci/python:3.7
1010
steps:
1111
- checkout
12+
- run:
13+
name: install dependencies
14+
command: |
15+
pip install -r requirements.txt
1216
- run:
1317
name: run tests
1418
command: |
@@ -45,6 +49,7 @@ jobs:
4549
command: |
4650
tag=`git tag --points-at HEAD`
4751
if [ $tag ]; then
52+
echo Uploading
4853
python -m twine upload dist/*
4954
fi
5055

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Websocket Server
55

66
A minimal Websockets Server in Python with no external dependencies.
77

8-
* Python3.5+
8+
* Python3.6+
99
* Clean simple API
1010
* Multiple clients
1111
* No dependencies
@@ -39,7 +39,7 @@ Testing
3939

4040
Run all tests
4141

42-
tox
42+
pytest
4343

4444

4545
API

docs/release-workflow.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ General flow
1212
4. Merge development into master (`git merge --no-ff development`)
1313
4. Add corresponding version as a new tag (`git tag <new_version>`) e.g. git tag v0.3.0
1414
5. Push everything (`git push --tags && git push`)
15+
16+
-

releases.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@
1111
0.5.5
1212
- Allow running run_forever threaded
1313
- Fix shutting down of a server without connected clients
14+
15+
0.5.6
16+
- Support from Python3.6+

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Dev/test/deploy
2-
tox>=3.24.0
32
IPython
43
pytest
54
websocket-client>=1.1.1

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from distutils.command.install import install
1313

1414

15-
VERSION = '0.5.5'
15+
VERSION = '0.5.6'
1616

1717

1818
def get_tag_version():
@@ -53,4 +53,5 @@ def run(self):
5353
cmdclass={
5454
'verify': VerifyVersionCommand,
5555
},
56+
python_requires=">=3.6",
5657
)

tests/_bootstrap_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
import sys, os
33
if os.getcwd().endswith('tests'):
44
sys.path.insert(0, '..')
5-
elif os.getcwd().endswith('websocket-server'):
5+
elif os.path.exists('websocket_server'):
66
sys.path.insert(0, '.')

tox.ini

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)