Skip to content

Commit 4ad51ba

Browse files
committed
Release 0.11.5
1 parent 277f29b commit 4ad51ba

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
12+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3]
1313
steps:
1414
- uses: actions/checkout@master
1515
- name: Setup python

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.11.5 (2020-11-09)
4+
5+
- Fix support for Python 3.5. [#86](https://github.com/PyO3/setuptools-rust/pull/86)
6+
37
## 0.11.4 (2020-11-03)
48

59
- Fix `tomlgen` functionality on Windows. [#78](https://github.com/PyO3/setuptools-rust/pull/78)

html-py-ever/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setuptools
2-
setuptools-rust
2+
-e ../ # use local setuptools-rust package
33
wheel
44
pytest-benchmark[historgram]
55
pytest>=3.6

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33
from setuptools import setup
44

55
if __name__ == "__main__":
6-
setup()
6+
setup(
7+
python_requires='>=3.5'
8+
)

0 commit comments

Comments
 (0)