Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d654e8c
update delease file and add it to doc ith mystè_parser
rflamary Dec 15, 2021
0a5210a
typos in release file
rflamary Dec 15, 2021
cbf076f
update PR template
rflamary Dec 15, 2021
c05dc08
test debug doc build
rflamary Dec 16, 2021
8604069
test debug doc build
rflamary Dec 16, 2021
b339af8
Merge branch 'master' into prv0.8.1
rflamary Dec 16, 2021
3ba20cc
wrog circleci
rflamary Dec 16, 2021
d2c7cc4
Merge branch 'prv0.8.1' of github.com:PythonOT/POT into prv0.8.1
rflamary Dec 16, 2021
a60cfbd
set proper version number
rflamary Dec 21, 2021
5babb75
Merge branch 'master' into prv0.8.1
rflamary Dec 21, 2021
07a5849
add numpy 1.20 constraint
rflamary Dec 21, 2021
611e156
remove python 3.6 deprecated in december
rflamary Dec 21, 2021
61058ba
add python 3.10
rflamary Dec 21, 2021
d495282
debug pip on windows
rflamary Dec 21, 2021
96edab7
proper yml
rflamary Dec 21, 2021
e941d0c
remoe 3.10 becauqe of troch
rflamary Dec 21, 2021
04864b7
next try
rflamary Dec 21, 2021
683baa3
try distutils
rflamary Dec 21, 2021
39c5461
back
rflamary Dec 21, 2021
928eae2
try something
rflamary Dec 21, 2021
4d88cf9
new stuf
rflamary Dec 21, 2021
96c9b03
debug yaml
rflamary Dec 21, 2021
84bcc29
test back to old vriso f numpy
rflamary Dec 22, 2021
a81601c
try something
rflamary Dec 22, 2021
ea5714b
windows is worksing?
rflamary Dec 26, 2021
bfa144d
proper version numpy
rflamary Dec 26, 2021
b95fe76
Merge branch 'master' into prv0.8.1
rflamary Dec 26, 2021
49a91d3
update release file
rflamary Dec 26, 2021
528e76e
Merge branch 'prv0.8.1' of github.com:PythonOT/POT into prv0.8.1
rflamary Dec 26, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ tensorflow). We also introduce a simple benchmark on CPU GPU for the sinkhorn
solver that will be provided in the
[backend](https://pythonot.github.io/gen_modules/ot.backend.html) documentation.

This release also brings a few changes in dependencies and compatibility. First
we removed tests for Python 3.6 that will not be updated in the future.
Also note that POT now depends on Numpy (>= 1.20) because a recent change in ABI is making the
wheels non-compatible with older numpy versions. If you really need an older
numpy POT will work with no problems but you will need to build it from source.

As always we want to that the contributors who helped make POT better (and bug free).

Expand All @@ -24,6 +29,7 @@ As always we want to that the contributors who helped make POT better (and bug f

#### Closed issues

- Fix bug in older Numpy ABI (<1.20) (Issue #308, PR #326)
- Fix bug in `ot.dist` function when non euclidean distance (Issue #305, PR #306)
- Fix gradient scaling for functions using `nx.set_gradients` (Issue #309, PR
#310)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools", "wheel", "numpy>=1.16", "cython>=0.23"]
requires = ["setuptools", "wheel", "numpy>=1.20", "cython>=0.23"]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.16
numpy>=1.20
scipy>=1.3
cython
matplotlib
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
license='MIT',
scripts=[],
data_files=[],
setup_requires=["numpy>=1.16", "cython>=0.23"],
install_requires=["numpy>=1.16", "scipy>=1.0"],
setup_requires=["numpy>=1.20", "cython>=0.23"],
install_requires=["numpy>=1.20", "scipy>=1.0"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand Down