Skip to content

Commit

Permalink
Added Python 3.11 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Misha Balyasin committed Oct 28, 2022
1 parent e444b63 commit d5d3915
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11"]
steps:
- name: Check out code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated all versions to the latest available (courtesy of `dependabot`)
- Added `run_from_dataframe` in `_run.py`, which enables passing dataframe as an input
- Dropped Python 3.7 support (i.e., we no longer test for this version) since `numpy` dropped it
- Added support for Python 3.10
- Added support for Python 3.10 and 3.11
- Replaced `pycld3` with `langdetect`. `pycld3` is unlikely to be supported in 3.10 and it recently started failing to build in 3.9. Since `pycld3` was only used in one place and given that `langdetect` looks like a reasonable replacement, we've decided to replace it.

### Fixed
Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11


[options]

python_requires >=3.8,<3.10
python_requires >=3.8,<3.11
install_requires =
click==8.1.3
numpy==1.23.4
Expand Down

0 comments on commit d5d3915

Please sign in to comment.