Skip to content

Commit 6fed4a1

Browse files
Merge pull request #11 from diffpy/setup_rever
ENH: support py3.8+ and set up rever
2 parents 4bed8d6 + be7f0b4 commit 6fed4a1

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ os:
66

77
env:
88
- MYUSEMC=true MYPYTHON_VERSION=2.7
9-
- MYUSEMC=true MYPYTHON_VERSION=3.5
10-
- MYUSEMC=true MYPYTHON_VERSION=3.6
119
- 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
1213
- MYUSEMC=false
1314

1415
git:

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Release notes
22

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+
319
## Version 3.0.0 -- 2019-03-12
420

521
Differences from version 1.2.2.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://diffpy.github.io/diffpy.utils.
2323
REQUIREMENTS
2424
------------------------------------------------------------------------
2525

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
2727
the following software:
2828

2929
* ``setuptools`` - tools for installing Python packages

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# Use this version when git data are not available, like in git zip archive.
1414
# Update when tagging a new release.
15-
FALLBACK_VERSION = '3.0.0.post0'
15+
FALLBACK_VERSION = '3.1.0'
1616

1717
# versioncfgfile holds version data for git commit hash and date.
1818
# It must reside in the same directory as version.py.
@@ -111,9 +111,10 @@ def getversioncfg():
111111
'Operating System :: POSIX',
112112
'Operating System :: Unix',
113113
'Programming Language :: Python :: 2.7',
114-
'Programming Language :: Python :: 3.5',
115-
'Programming Language :: Python :: 3.6',
116114
'Programming Language :: Python :: 3.7',
115+
'Programming Language :: Python :: 3.8',
116+
'Programming Language :: Python :: 3.9',
117+
'Programming Language :: Python :: 3.10',
117118
'Topic :: Scientific/Engineering :: Physics',
118119
],
119120
)

0 commit comments

Comments
 (0)