Skip to content
This repository has been archived by the owner on Jan 22, 2022. It is now read-only.

Commit

Permalink
Update for v0.3.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
joshvillbrandt committed Jun 28, 2019
1 parent 007975d commit 8a01c35
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
.eggs

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ nmcli | Ubuntu 12.04, 14.04 | Linksys AE3000, Intel Centrino 6250
wpa_supplicant | Ubuntu 12.04, 14.04 | Intel Centrino 6250
networksetup | Mac OS 10.10 | Macbook Pro



## Setup

```bash
Expand Down Expand Up @@ -52,6 +50,11 @@ Note: To use `wpa_supplicant`, `network-manager` (the backend for `nmcli`) must

This project uses [semantic versioning](http://semver.org/).

### v0.3.3 - 2019/06/27

* Fix version comparison for python3.5 ([pschmitt](https://github.com/pschmitt))
* Update iwconfig current() to handle Nickname field ([jminardi](https://github.com/jminardi))

### v0.3.2 - 2016/03/06

* Added a few tests and fixed a py34 bug ([XayOn](https://github.com/XayOn))
Expand Down Expand Up @@ -96,8 +99,8 @@ sudo apt-get install pandoc
sudo pip install pypandoc
```

Then, following [this guide](http://peterdowns.com/posts/first-time-with-pypi.html), push the project to PyPI:
Then, following [this guide](https://packaging.python.org/tutorials/packaging-projects/), push the project to PyPI:

```bash
sudo python setup.py sdist upload -r pypi
python3 -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='wireless',
version='0.3.2',
version='0.3.3',
description='A dead simple, cross-platform Python library to connect to ' +
'wireless networks.',
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py27,py33,py34,flake8
envlist=py27,py33,py34,py36,flake8

[testenv]
commands=
Expand Down
1 change: 1 addition & 0 deletions wireless/Wireless.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import subprocess
from time import sleep
from packaging import version
import re


# send a command to the shell and return the result
Expand Down

0 comments on commit 8a01c35

Please sign in to comment.