-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update contributing guide. Fix #1786 #1793
Conversation
CONTRIBUTING.md
Outdated
1. <a href="https://github.com/RaRe-Technologies/gensim/fork">Fork the Gensim repository</a> | ||
2. Clone your fork: `git clone https://github.com/<USERNAME>/gensim.git` | ||
3. Create a new branch based on `develop`: `git checkout -b my-feature develop` | ||
4. Implement your changes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Python work environment? Dependencies?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed d6a956e
CONTRIBUTING.md
Outdated
- Build its documentation (works only for MacOS/Linux): `tox -e docs` | ||
- Run unit tests: `tox -e py{version}-{os}`, for example `tox -e py27-linux` or `tox -e py36-win` where | ||
- `{version}` is one of `27`, `35`, `36` and | ||
- `{os}` is either `win` or `linux` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No testing for OSX?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably linux
should works fine for macOS (but I can't test it)
CONTRIBUTING.md
Outdated
4. Implement your changes | ||
5. Check that everything's OK in your branch: | ||
- Check it for PEP8: `tox -e flake8` | ||
- Build its documentation (works only for MacOS/Linux): `tox -e docs` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No docs for Windows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, never was.
Fix #1786