Skip to content

Commit 386fc9d

Browse files
committed
really fix appveyor.yml
1 parent 40abbde commit 386fc9d

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

README.rst

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Implementation of the `PEP 3156`_ Event-Loop with Qt
2121
:target: https://pypi.python.org/pypi/quamash/
2222
:alt: License
2323

24-
.. image:: https://img.shields.io/pypi/status/Django.svg
24+
.. image:: https://img.shields.io/pypi/status/quamash.svg
2525
:target: https://pypi.python.org/pypi/quamash/
2626
:alt: Development Status
2727

@@ -39,7 +39,7 @@ Implementation of the `PEP 3156`_ Event-Loop with Qt
3939

4040
Requirements
4141
============
42-
Quamash requires Python 3.4 or Python 3.3 with the backported ``asyncio`` library and either PyQt4, PyQt5 or PySide.
42+
Quamash requires Python 3.6 or later with PyQt5 or PySide2.
4343

4444
Installation
4545
============
@@ -114,6 +114,14 @@ Usage
114114
Changelog
115115
=========
116116

117+
Version 0.7.0
118+
* Dropped support for Python 3.3, 3.4, and 3.5
119+
* Dropped support for PyQt4 and PySide
120+
* Added support for PySide2
121+
* Tests now uses `tox` and wheels, no weird dependency management.
122+
* Now uses poetry to manage deps (though this transparent to users, who can use whatever)
123+
* setup.py no longer imports the package
124+
117125
Version 0.6.1
118126
* Python 3.7 support (no automated test coverage)
119127

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ environment:
2121
# tox will make an environment based on the environment variables.
2222

2323
install:
24-
- "build.cmd py -3.7 -m pip install wheel tox tox-appveyor"
24+
- "py -m pip install wheel tox tox-appveyor"
2525

2626
test_script:
27-
- "build.cmd py -3.7 -m tox"
27+
- "py -m tox"
2828

2929
notifications:
3030
- provider: Webhook

0 commit comments

Comments
 (0)