Skip to content
This repository was archived by the owner on Apr 22, 2024. It is now read-only.

Commit b9d451b

Browse files
Remove python 3.6 references (#620)
Also add references to python3.[789] in setup.py
1 parent 62ea6d2 commit b9d451b

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
build: clean prepare
2-
python3.6 setup.py sdist
2+
python3 setup.py sdist
33
ls -l dist/
44

55
clean:
66
rm -rf build/ dist/ *.egg-info/
77

88
prepare:
9-
pip3.6 install --upgrade pip setuptools wheel twine
9+
pip3 install --upgrade pip setuptools wheel twine
1010

1111
testupload: build
1212
twine upload -r pypitest dist/*

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Quick Start
2828
Installing
2929
==========
3030

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.
3333

3434
We are doing a huge effort to make Kytos and its components available on all
3535
common distros. So, we recommend you to download it from your distro repository.
@@ -50,14 +50,14 @@ procedure:
5050
.. code-block:: shell
5151
5252
$ cd python-openflow
53-
$ sudo python3.6 setup.py install
53+
$ sudo python3 setup.py install
5454
5555
Alternatively, if you are a developer and want to install in develop mode:
5656

5757
.. code-block:: shell
5858
5959
$ cd python-openflow
60-
$ pip3.6 install -r requirements/dev.txt
60+
$ pip3 install -r requirements/dev.txt
6161
6262
6363
Basic Usage Example

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,9 @@ def run(self):
201201
'License :: OSI Approved :: MIT License',
202202
'Operating System :: POSIX :: Linux',
203203
'Programming Language :: Python :: 3.6',
204+
'Programming Language :: Python :: 3.7',
205+
'Programming Language :: Python :: 3.8',
206+
'Programming Language :: Python :: 3.9',
204207
'Topic :: System :: Networking',
205208
'Topic :: Software Development :: Libraries'
206209
])

0 commit comments

Comments
 (0)