Skip to content

Commit 46b43ef

Browse files
ENH: support python 3.8, 3.9, 3.10
1 parent 007d937 commit 46b43ef

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ env:
1010
- MYUSEMC=true MYPYTHON_VERSION=3.5
1111
- MYUSEMC=true MYPYTHON_VERSION=3.6
1212
- MYUSEMC=true MYPYTHON_VERSION=3.7
13+
- MYUSEMC=true MYPYTHON_VERSION=3.8
14+
- MYUSEMC=true MYPYTHON_VERSION=3.9
15+
- MYUSEMC=true MYPYTHON_VERSION=3.10
1316
- MYUSEMC=false
1417

1518
git:

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Release notes
22

3-
## Unreleased - Version 3.0.2
3+
## Version 3.1.0 – 2022-12-04
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+
### Fixed
16+
17+
## Version 3.0.2 - 2022-10-12
418

519
### Added
620

doc/manual/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
# -- intersphinx configuration --------------------------------------------
205205

206206
intersphinx_mapping = {
207-
'python' : ('https://docs.python.org/3.7', None),
207+
'python' : ('https://docs.python.org/3.10', None),
208208
'numpy' : ('https://docs.scipy.org/doc/numpy', None),
209209
}
210210

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ def getversioncfg():
119119
'Programming Language :: Python :: 3.5',
120120
'Programming Language :: Python :: 3.6',
121121
'Programming Language :: Python :: 3.7',
122+
'Programming Language :: Python :: 3.8',
123+
'Programming Language :: Python :: 3.9',
124+
'Programming Language :: Python :: 3.10',
122125
'Topic :: Scientific/Engineering :: Chemistry',
123126
'Topic :: Scientific/Engineering :: Physics',
124127
],

0 commit comments

Comments
 (0)