Skip to content

Commit d214a80

Browse files
committed
admin
1 parent 9d3b41a commit d214a80

File tree

2 files changed

+29
-15
lines changed

2 files changed

+29
-15
lines changed

README.md

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,18 @@ DOI: 10.5281/zenodo.2597200
1414

1515

1616
## What's new.
17-
+ 05 Apr 2022 version 3.0.1
18-
* Addressing issue #18: UserModel does not work for multiple dimensions.
17+
+ 18 Jan 2023 version 3.1.0 (still working on the same update)
18+
* Implementing accuracy in fitters and samplers
19+
* Update of documentation
20+
* More tests
21+
22+
+ 19 Nov 2022 version 3.1.0
23+
* Gauss2dErrorDistribution: New Class to handle correlated errors in X and Y
24+
* ErrorDistribution and GaussErrorDistribution : adaptation for covariant errors.
25+
* Small updates and corrections and removal of unused methods
26+
* Added / corrected version information and documentation issues
27+
* Rerun all examples and added tests
1928

20-
+ 07 Feb 2022 version 3.0.0
21-
* New classes: AstropyModel and UserModel
22-
* New class: NeuralNetUtilities
23-
* New classes: NestedSolver, OrderProblem, SalesmanProblem, DistanceCostFunction
24-
* New classes: OrderEngine, MoveEngine, SwitchEngine, LoopEngine, ShuffleEngine
25-
* New classes: ReverseEngine, NearEngine, StartOrderEngine
26-
* Make pipe work for more dimensional output | input
27-
* Test harnesses for the new classes
28-
* New examples for AstropyModel, UserModel and SalesmanProblem
29-
* Update existing examples to improve coverage of pytest
30-
* update Manual
3129

3230

3331
## Content
@@ -360,7 +358,22 @@ More work needs to be done in:
360358
* Documentation issues; Replaced style.md by code-style.md
361359
* Correcting error on Windows systme
362360

361+
+ 05 Apr 2022 version 3.0.1
362+
* Addressing issue #18: UserModel does not work for multiple dimensions.
363+
363364
+ 07 Feb 2022 version 3.0.0
365+
* New classes: AstropyModel and UserModel
366+
* New class: NeuralNetUtilities
367+
* New classes: NestedSolver, OrderProblem, SalesmanProblem, DistanceCostFunction
368+
* New classes: OrderEngine, MoveEngine, SwitchEngine, LoopEngine, ShuffleEngine
369+
* New classes: ReverseEngine, NearEngine, StartOrderEngine
370+
* Make pipe work for more dimensional output | input
371+
* Test harnesses for the new classes
372+
* New examples for AstropyModel, UserModel and SalesmanProblem
373+
* Update existing examples to improve coverage of pytest
374+
* update Manual
375+
376+
+ 19 Nov 2022 version 3.1.0
364377
* See above in Whats new
365378

366379
<br><br><br><br>

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
__version__ = '3.0.1'
3+
__version__ = '3.1.0'
44

55
with open("README.md", "r") as fh:
66
long_description = fh.read()
@@ -37,5 +37,6 @@
3737
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
3838
"Topic :: Scientific/Engineering"
3939
],
40-
include_package_data=True
40+
include_package_data=True,
41+
zip_safe=True
4142
)

0 commit comments

Comments
 (0)