File tree Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 6
6
7
7
env :
8
8
- MYUSEMC=true MYPYTHON_VERSION=2.7
9
- - MYUSEMC=true MYPYTHON_VERSION=3.5
10
- - MYUSEMC=true MYPYTHON_VERSION=3.6
11
9
- MYUSEMC=true MYPYTHON_VERSION=3.7
10
+ - MYUSEMC=true MYPYTHON_VERSION=3.8
11
+ - MYUSEMC=true MYPYTHON_VERSION=3.9
12
+ - MYUSEMC=true MYPYTHON_VERSION=3.10
12
13
- MYUSEMC=false
13
14
14
15
git :
Original file line number Diff line number Diff line change 1
1
# Release notes
2
2
3
+ ## Version 3.1.0 – 2022-12-09
4
+
5
+ ### Added
6
+
7
+ - Compatibility with Python 3.10, 3.9, 3.8
8
+
9
+ ### Changed
10
+
11
+ ### Deprecated
12
+
13
+ ### Removed
14
+
15
+ - Remove the support for Python 3.5, 3.6.
16
+
17
+ ### Fixed
18
+
3
19
## Version 3.0.0 -- 2019-03-12
4
20
5
21
Differences from version 1.2.2.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ http://diffpy.github.io/diffpy.utils.
23
23
REQUIREMENTS
24
24
------------------------------------------------------------------------
25
25
26
- The diffpy.utils package requires Python 3.4 or later or 2.7 and
26
+ The diffpy.utils package requires Python 3.7 or later or 2.7 and
27
27
the following software:
28
28
29
29
* ``setuptools `` - tools for installing Python packages
Original file line number Diff line number Diff line change 12
12
13
13
# Use this version when git data are not available, like in git zip archive.
14
14
# Update when tagging a new release.
15
- FALLBACK_VERSION = '3.0.0.post0 '
15
+ FALLBACK_VERSION = '3.1.0 '
16
16
17
17
# versioncfgfile holds version data for git commit hash and date.
18
18
# It must reside in the same directory as version.py.
@@ -111,9 +111,10 @@ def getversioncfg():
111
111
'Operating System :: POSIX' ,
112
112
'Operating System :: Unix' ,
113
113
'Programming Language :: Python :: 2.7' ,
114
- 'Programming Language :: Python :: 3.5' ,
115
- 'Programming Language :: Python :: 3.6' ,
116
114
'Programming Language :: Python :: 3.7' ,
115
+ 'Programming Language :: Python :: 3.8' ,
116
+ 'Programming Language :: Python :: 3.9' ,
117
+ 'Programming Language :: Python :: 3.10' ,
117
118
'Topic :: Scientific/Engineering :: Physics' ,
118
119
],
119
120
)
You can’t perform that action at this time.
0 commit comments