File tree 8 files changed +29
-21
lines changed
8 files changed +29
-21
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ version: '{build}'
4
4
image :
5
5
- Visual Studio 2015
6
6
7
- # cache:
8
- # - 'C:\Python38\'
9
- # - 'C:\Python38-x64'
7
+ cache :
8
+ - ' C:\Python38\'
9
+ - ' C:\Python38-x64'
10
10
11
11
environment :
12
12
libyaml_repo_url : https://github.com/yaml/libyaml.git
Original file line number Diff line number Diff line change @@ -16,11 +16,12 @@ matrix:
16
16
env : TOXENV=py35
17
17
- python : 3.6
18
18
env : TOXENV=py36
19
- - python : 3.7-dev
19
+ - python : 3.7
20
20
env : TOXENV=py37
21
- # This is broken on travis as of 2019/03/12
22
- # - python: pypy
23
- # env: TOXENV=pypy
21
+ - python : 3.8-dev
22
+ env : TOXENV=py38
23
+ - python : pypy
24
+ env : TOXENV=pypy
24
25
25
26
# build libyaml
26
27
before_script :
Original file line number Diff line number Diff line change @@ -4,10 +4,15 @@ For a complete changelog, see:
4
4
* https://github.com/yaml/pyyaml/commits/
5
5
* https://bitbucket.org/xi/pyyaml/commits/
6
6
7
+ 5.1.2 (2019-07-30)
8
+ ------------------
9
+
10
+ * Re-release of 5.1 with regenerated Cython sources to build properly for Python 3.8b2+
11
+
7
12
5.1.1 (2019-06-05)
8
13
------------------
9
14
10
- * Re-release of 5.1 with regenerated Cython sources to build properly for Python 3.8
15
+ * Re-release of 5.1 with regenerated Cython sources to build properly for Python 3.8b1
11
16
12
17
5.1 (2019-03-13)
13
18
----------------
Original file line number Diff line number Diff line change 1
1
From: Ingy döt Net <ingy@ingy.net>
2
2
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
3
- Subject: [ANN] PyYAML-5.1.1 : YAML parser and emitter for Python
3
+ Subject: [ANN] PyYAML-5.1.2 : YAML parser and emitter for Python
4
4
5
5
=======================
6
- Announcing PyYAML-5.1.1
6
+ Announcing PyYAML-5.1.2
7
7
=======================
8
8
9
9
A new minor release of PyYAML is now available:
10
10
https://pypi.org/project/PyYAML/
11
11
12
12
This is a maintenance re-release of PyYAML 5.1 with re-generated Cython
13
- bindings to allow the extension to build properly for Python 3.8 . No code
13
+ bindings to allow the extension to build properly for Python 3.8b2+ . No code
14
14
changes were made in the PyYAML sources.
15
15
16
16
Changes
Original file line number Diff line number Diff line change 8
8
from loader import *
9
9
from dumper import *
10
10
11
- __version__ = '5.1.1 '
11
+ __version__ = '5.1.2 '
12
12
13
13
try :
14
14
from cyaml import *
Original file line number Diff line number Diff line change 8
8
from .loader import *
9
9
from .dumper import *
10
10
11
- __version__ = '5.1.1 '
11
+ __version__ = '5.1.2 '
12
12
try :
13
13
from .cyaml import *
14
14
__with_libyaml__ = True
Original file line number Diff line number Diff line change 6
6
# Update-AppveyorBuild -Version $dynamic_version
7
7
8
8
Function Bootstrap () {
9
- # uncomment when we want to start testing on Python 3.8
10
9
# ensure py38 is present (current Appveyor VS2015 image doesn't include it)
11
- # If(-not $(Test-Path C:\Python38)) {
12
- # choco.exe install python3 --version=3.8.0-a2 --forcex86 --force #--install-arguments="TargetDir= C:\Python38 PrependPath=0 " --no-progress
13
- # }
10
+ If (-not $ (Test-Path C:\Python38)) {
11
+ choco.exe install python3 -- version= 3.8 .0 - b3 -- forcex86 -- force -- params = " /InstallDir: C:\Python38" -- no- progress
12
+ }
14
13
15
- # If(-not $(Test-Path C:\Python38-x64)) {
16
- # choco.exe install python3 --version=3.8.0-a2 --force #--install-arguments="TargetDir= C:\Python38-x64 PrependPath=0 " --no-progress
17
- # }
14
+ If (-not $ (Test-Path C:\Python38- x64)) {
15
+ choco.exe install python3 -- version= 3.8 .0 - b3 -- force -- params = " /InstallDir: C:\Python38-x64" -- no- progress
16
+ }
18
17
19
18
Write-Output " patching Windows SDK bits for distutils"
20
19
@@ -123,6 +122,8 @@ $pythons = @(
123
122
" C:\Python36-x64"
124
123
" C:\Python37"
125
124
" C:\Python37-x64"
125
+ " C:\Python38"
126
+ " C:\Python38-x64"
126
127
)
127
128
128
129
# $pythons = @("C:\$($env:PYTHON_VER)")
Original file line number Diff line number Diff line change 1
1
2
2
NAME = 'PyYAML'
3
- VERSION = '5.1.1 '
3
+ VERSION = '5.1.2 '
4
4
DESCRIPTION = "YAML parser and emitter for Python"
5
5
LONG_DESCRIPTION = """\
6
6
YAML is a data serialization format designed for human readability
33
33
"Programming Language :: Python :: 3.5" ,
34
34
"Programming Language :: Python :: 3.6" ,
35
35
"Programming Language :: Python :: 3.7" ,
36
+ "Programming Language :: Python :: 3.8" ,
36
37
"Programming Language :: Python :: Implementation :: CPython" ,
37
38
"Programming Language :: Python :: Implementation :: PyPy" ,
38
39
"Topic :: Software Development :: Libraries :: Python Modules" ,
You can’t perform that action at this time.
0 commit comments