Skip to content

Commit

Permalink
Add Python 3.9 to the list of supported Python vesions.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsteffensmeier committed Oct 4, 2020
1 parent 3506fb8 commit 8a2746a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Building and installing require the JDK, Python, and optionally numpy to be inst

Dependencies
------------
* Python 2.7, 3.3, 3.4, 3.5, 3.6, 3.7, or 3.8
* Python 2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, or 3.9
* Java >= 1.7
* NumPy >= 1.7 (optional)

Expand Down
2 changes: 1 addition & 1 deletion commands/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def run(self):
classpath = os.path.join(self.java_build, 'jep-' + version + '.jar')
classpath += os.pathsep + os.path.join(self.java_build, 'jep-' + version + '-test.jar')
classpath += os.pathsep + 'src/test/python/lib/sqlitejdbc-v056.jar'
classpath += os.pathsep + 'stc/test/python/lib/fakenetty.jar'
classpath += os.pathsep + 'src/test/python/lib/fakenetty.jar'

# setup environment variables
environment = {}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def read_file(name):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
],
ext_modules=[
Expand Down

0 comments on commit 8a2746a

Please sign in to comment.