Skip to content

Commit 706a742

Browse files
authored
Release v1.2.2
<!-- Thanks for contributing a pull request! Please ensure you have taken a look at the contribution guidelines: https://github.com/scikit-learn/scikit-learn/blob/main/CONTRIBUTING.md --> #### Reference Issues/PRs <!-- Example: Fixes scikit-learn#1234. See also scikit-learn#3456. Please use keywords (e.g., Fixes) to create link to the issues or pull requests you resolved, so that they will automatically be closed when your pull request is merged. See https://github.com/blog/1506-closing-issues-via-pull-requests --> #### What does this implement/fix? Explain your changes. #### Any other comments? <!-- Please be aware that we are a loose team of volunteers so patience is necessary; assistance handling other issues is very welcome. We value all user contributions, no matter how minor they are. If we are slow to review, either the pull request needs some benchmarking, tinkering, convincing, etc. or more likely the reviewers are simply busy. In either case, we ask for your understanding during the review process. For more information, see our FAQ on this topic: http://scikit-learn.org/dev/faq.html#why-is-my-pull-request-not-getting-any-attention. Thanks for contributing! --> --------- Signed-off-by: Adam Li <adam2392@gmail.com>
1 parent f8d4697 commit 706a742

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.github/workflows/check-upstream.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Create Github Actions workflow that checks upstream scikit-learn 'main' branch and
2+
# creates or updates
3+
# an existing pull request to https://github.com/neurodata/scikit-learn:fork.
4+
# Runs the check weekly.
5+
# Creates a pull request if there are changes.
6+
7+
# name: Check upstream scikit-learn
8+
9+
# on:
10+
# schedule:
11+
# - cron: '0 0 * * 0'
12+
13+
# jobs:
14+
# check-upstream:
15+
# runs-on: ubuntu-latest
16+
# steps:
17+
# - uses: actions/checkout@v2
18+
# - name: Check upstream scikit-learn
19+
# uses: neurodata/check-upstream@main
20+
# with:
21+
# upstream: scikit-learn/scikit-learn
22+
# fork: neurodata/scikit-learn
23+
# branch: fork
24+
# token: ${{ secrets.GITHUB_TOKEN }}
25+
26+
# # Creates a pull request if there are changes.
27+

sklearn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
4040
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
4141
#
42-
__version__ = "1.3.dev0"
42+
__version__ = "1.2.2"
4343

4444

4545
# On OSX, we can get a runtime error due to multiple OpenMP libraries loaded

0 commit comments

Comments
 (0)