Skip to content

Commit

Permalink
Adding testing for Python 3.10, 3.11, move default version to Python …
Browse files Browse the repository at this point in the history
…3.10.
  • Loading branch information
msusol committed Feb 12, 2023
1 parent 69a5003 commit f6af12a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 3.7, 3.8, 3.9, and for PyPI. Check
3. The pull request should work for Python 3.8, 3.9, 3.10, 3.11, and for PyPI. Check
https://travis-ci.org/bmabey/pyLDAvis/pull_requests
and make sure that the tests pass for all supported Python versions.

Expand Down
3 changes: 2 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
History
-------

3.4.0 (2023-02-11)
3.4.0 (2023-02-12)
~~~~~~~~~~~~~~~~~~

* Adding testing for Python 3.10, 3.11, move default version to Python 3.10.
* Remove "sklearn" from requirements #234
* Tox testing: No module named 'sklearn.manifold'; 'sklearn' is not a package.
* Rename sklearn.py to lda_model.py.
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ reproducer = {editable = true, path = "."}
pytest = ">=3.8"

[requires]
python_version = "3.9"
python_version = "3.10"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39
envlist = py38, py39, py310, py311

[testenv]
install_command = pip3 install {opts} {packages}
Expand Down

0 comments on commit f6af12a

Please sign in to comment.