summaryrefslogtreecommitdiff
path: root/environment.yml
Commit message (Collapse)AuthorAgeFilesLines
* Bump numpydoc version.Ross Barnowski2022-02-011-1/+1
|
* DEV: Update dependencies and Docker image (#20854)Tania Allard2022-01-191-3/+4
|
* TST: Bump mypy to 0.931Bas van Beek2022-01-111-1/+1
|
* TYP,TST: Bump mypy to 0.930Bas van Beek2021-12-261-1/+1
|
* TST: Bump mypy: 0.910 -> 0.920Bas van Beek2021-12-161-1/+1
|
* MAINT: Update the required setuptools version.Charles Harris2021-11-241-1/+1
| | | | | | An newer setuptools version is needed in order to run tests in Fedora 35 using the default Python 3.10. Because the newest version (59.2.0) works to both build and test NumPy, pin the version is to that.
* BUILD: in conda, pin setuptools to a known working versionmattip2021-11-041-0/+1
|
* MAINT: Add breathe to environment.ymlRoss Barnowski2021-10-211-0/+1
| | | | Should fix a few doc build warnings in the gitpod env.
* BLD: updated mypy version from 0.902 to 0.910sayantikabanik2021-09-301-1/+1
|
* BLD: Drop typing extension as an (optional) runtime dependencyBas van Beek2021-08-301-2/+1
| | | | It might return in the future, but as of the moment we don't need it anymore
* MAINT: bump Sphinx in environment.yml filemelissawm2021-07-191-1/+1
|
* Split pipeline. Update version of mypy to 0.902.Chiara Marmo2021-06-281-1/+1
|
* Unpin pydata sphinx theme and update config.Ross Barnowski2021-06-211-1/+1
| | | | | | | | | | As of v0.6, the pydata-sphinx-theme has a collapsible navigation feature for the sidebar that significantly increases the build time and html file size for the docs. We had originally pinned to 0.5.2 to avoid this, but the feature is now configurable with the collapse_navigation=True value. Remove the upper-bound pinning the theme and instead use the configuration option to keep doc build times reasonable.
* DOC: fix duplicate navbar in development documentation index (#19264)Melissa Weber Mendonça2021-06-171-1/+1
| | | | | Also update pinned version of sphinx in environment.yml Fixes gh-19028
* CI: fix the GitHub Actions trigger in docker.yml (#18912)Ralf Gommers2021-05-051-0/+2
| | | | | Also remove `tags: *`, this is unnecessary. This mirrors the fix in SciPy, so should work. Somehow GitHub Actions no longer likes `./` at the start of a path.
* DEV: general Gitpod enhancements (#18822)Tania Allard2021-04-261-1/+1
|
* Pin pydata-sphinx-theme to 0.5.2.Ross Barnowski2021-04-161-1/+1
|
* DEV: add Gitpod to numpy (#18733)Thomas J. Fan2021-04-111-0/+1
|
* DEV: add a conda environment.yml with all development dependenciesRalf Gommers2021-03-211-0/+33
There are enough dependencies now that it's too hard to remember. This set is comprehensive, so a single `conda env create -f environment.yml` gives you everything in a fresh environment named numpy-dev. [ci skip]