Skip to content

Commit

Permalink
Update list of supported python versions (#1089)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Jul 24, 2023
1 parent 3c34875 commit f3d802e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/store/search/filter.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const DEFAULT_PLUGIN_TYPE_STATE = Object.values(PluginType).reduce(
{} as Partial<FilterState<PluginType>>,
) as FilterState<PluginType>;

export const SUPPORTED_PYTHON_VERSIONS = ['3.6', '3.7', '3.8', '3.9'];
export const SUPPORTED_PYTHON_VERSIONS = ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'];

Check failure on line 36 in frontend/src/store/search/filter.store.ts

View workflow job for this annotation

GitHub Actions / eslint

Replace `'3.6',·'3.7',·'3.8',·'3.9',·'3.10',·'3.11'` with `⏎··'3.6',⏎··'3.7',⏎··'3.8',⏎··'3.9',⏎··'3.10',⏎··'3.11',⏎`

export class SearchFilterStore implements Resettable {
license = {
Expand Down

0 comments on commit f3d802e

Please sign in to comment.