Skip to content

Commit 62d2de9

Browse files
author
atollk
committed
Merge branch 'master' into issue_450
2 parents 9b432a2 + f6a6195 commit 62d2de9

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.github/workflows/package.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Package
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
tags:
6+
- 'v2.*'
67

78
jobs:
89

@@ -97,7 +98,7 @@ jobs:
9798
with:
9899
name: dist
99100
path: dist
100-
- name: Install source distribution
101+
- name: Install wheel distribution
101102
run: python -m pip install dist/fs-*.whl
102103
- name: Remove source code
103104
run: rm -rvd fs

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88

99
## Unreleased
1010

11+
12+
## [2.4.13] - 2021-03-27
13+
1114
### Added
1215

1316
- Added FTP over TLS (FTPS) support to FTPFS.

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ environment:
2020

2121
install:
2222
# We need wheel installed to build wheels
23-
- "%PYTHON%\\python.exe -m pip install pytest pytest-randomly pytest-cov psutil pyftpdlib mock"
23+
- "%PYTHON%\\python.exe -m pip install -U pip wheel setuptools"
24+
- "%PYTHON%\\python.exe -m pip install pytest"
25+
- "%PYTHON%\\python.exe -m pip install -r tests/requirements.txt"
2426
- "%PYTHON%\\python.exe setup.py install"
2527

2628
build: off
2729

2830
test_script:
29-
- "%PYTHON%\\python.exe -m pytest -v tests"
31+
- "%PYTHON%\\python.exe -m pytest"

fs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version, used in module and setup.py.
22
"""
3-
__version__ = "2.4.12"
3+
__version__ = "2.4.13"

0 commit comments

Comments
 (0)