Skip to content

Commit 176c6b4

Browse files
authored
[MRG] Release 0.8.1 (#325)
* update delease file and add it to doc ith mystè_parser * typos in release file * update PR template * test debug doc build * test debug doc build * wrog circleci * set proper version number * add numpy 1.20 constraint * remove python 3.6 deprecated in december * add python 3.10 * debug pip on windows * proper yml * remoe 3.10 becauqe of troch * next try * try distutils * back * try something * new stuf * debug yaml * test back to old vriso f numpy * try something * windows is worksing?
1 parent de5abac commit 176c6b4

File tree

6 files changed

+32
-12
lines changed

6 files changed

+32
-12
lines changed

.github/workflows/build_tests.yml

+19-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
max-parallel: 4
2424
matrix:
25-
python-version: [ "3.6", "3.7", "3.8", "3.9"]
25+
python-version: ["3.7", "3.8", "3.9"]
2626

2727
steps:
2828
- uses: actions/checkout@v1
@@ -128,12 +128,29 @@ jobs:
128128
uses: actions/setup-python@v1
129129
with:
130130
python-version: ${{ matrix.python-version }}
131+
- name: RC.exe
132+
run: |
133+
function Invoke-VSDevEnvironment {
134+
$vswhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
135+
$installationPath = & $vswhere -prerelease -legacy -latest -property installationPath
136+
$Command = Join-Path $installationPath "Common7\Tools\vsdevcmd.bat"
137+
& "${env:COMSPEC}" /s /c "`"$Command`" -no_logo && set" | Foreach-Object {
138+
if ($_ -match '^([^=]+)=(.*)') {
139+
[System.Environment]::SetEnvironmentVariable($matches[1], $matches[2])
140+
}
141+
}
142+
}
143+
Invoke-VSDevEnvironment
144+
Get-Command rc.exe | Format-Table -AutoSize
145+
- name: Update pip
146+
run : |
147+
python -m pip install --upgrade pip setuptools
148+
python -m pip install cython
131149
- name: Install POT
132150
run: |
133151
python -m pip install -e .
134152
- name: Install dependencies
135153
run: |
136-
python -m pip install --upgrade pip
137154
python -m pip install -r .github/requirements_test_windows.txt
138155
python -m pip install torch==1.8.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
139156
python -m pip install pytest "pytest-cov<2.6"

RELEASES.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# Releases
22

33

4-
## 0.8.1dev
4+
## 0.8.1
55
*December 2021*
66

7-
This release fixes several bugs and introduce two new backends: Cupy
8-
and Tensorflow. Note that teh tensorflow backend will work only when tensorflow
9-
has enabled the Numpy behavior (that's for transpose that is not by default in
10-
tensorflow). We also introduce a simple benchmark on CPU GPU for te sinkhorn
11-
solver that will be provided in teh documentation.
7+
This release fixes several bugs and introduces two new backends: Cupy
8+
and Tensorflow. Note that the tensorflow backend will work only when tensorflow
9+
has enabled the Numpy behavior (for transpose that is not by default in
10+
tensorflow). We also introduce a simple benchmark on CPU GPU for the sinkhorn
11+
solver that will be provided in the
12+
[backend](https://pythonot.github.io/gen_modules/ot.backend.html) documentation.
1213

13-
As always we want to that the contributors who helped mak POT better (and bug free).
14+
15+
As always we want to that the contributors who helped make POT better (and bug free).
1416

1517
#### New features
1618

ot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# utils functions
5151
from .utils import dist, unif, tic, toc, toq
5252

53-
__version__ = "0.8.1dev"
53+
__version__ = "0.8.1"
5454

5555
__all__ = ['emd', 'emd2', 'emd_1d', 'sinkhorn', 'sinkhorn2', 'utils',
5656
'datasets', 'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy
1+
numpy>=1.16
22
scipy>=1.3
33
cython
44
matplotlib

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
description-file = README.md
2+
description_file = README.md
33

44
[flake8]
55
exclude = __init__.py

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,6 @@
9595
'Programming Language :: Python :: 3.7',
9696
'Programming Language :: Python :: 3.8',
9797
'Programming Language :: Python :: 3.9',
98+
'Programming Language :: Python :: 3.10',
9899
]
99100
)

0 commit comments

Comments
 (0)