This repository was archived by the owner on Apr 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
build : clean prepare
2
- python3.6 setup.py sdist
2
+ python3 setup.py sdist
3
3
ls -l dist/
4
4
5
5
clean :
6
6
rm -rf build/ dist/ * .egg-info/
7
7
8
8
prepare :
9
- pip3.6 install --upgrade pip setuptools wheel twine
9
+ pip3 install --upgrade pip setuptools wheel twine
10
10
11
11
testupload : build
12
12
twine upload -r pypitest dist/*
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ Quick Start
28
28
Installing
29
29
==========
30
30
31
- We use python3.6. So in order to use this software please install python3.6
32
- into your environment beforehand.
31
+ In order to use this software please install python3.6 or greater into your
32
+ environment beforehand.
33
33
34
34
We are doing a huge effort to make Kytos and its components available on all
35
35
common distros. So, we recommend you to download it from your distro repository.
@@ -50,14 +50,14 @@ procedure:
50
50
.. code-block :: shell
51
51
52
52
$ cd python-openflow
53
- $ sudo python3.6 setup.py install
53
+ $ sudo python3 setup.py install
54
54
55
55
Alternatively, if you are a developer and want to install in develop mode:
56
56
57
57
.. code-block :: shell
58
58
59
59
$ cd python-openflow
60
- $ pip3.6 install -r requirements/dev.txt
60
+ $ pip3 install -r requirements/dev.txt
61
61
62
62
63
63
Basic Usage Example
Original file line number Diff line number Diff line change @@ -201,6 +201,9 @@ def run(self):
201
201
'License :: OSI Approved :: MIT License' ,
202
202
'Operating System :: POSIX :: Linux' ,
203
203
'Programming Language :: Python :: 3.6' ,
204
+ 'Programming Language :: Python :: 3.7' ,
205
+ 'Programming Language :: Python :: 3.8' ,
206
+ 'Programming Language :: Python :: 3.9' ,
204
207
'Topic :: System :: Networking' ,
205
208
'Topic :: Software Development :: Libraries'
206
209
])
You can’t perform that action at this time.
0 commit comments