summaryrefslogtreecommitdiff
path: root/environment.yml
Commit message (Collapse)AuthorAgeFilesLines
* BUILD: fixes for MSVCMatti Picus2023-02-201-1/+2
|
* BLD: enable building NumPy with MesonRalf Gommers2022-11-251-0/+4
| | | | | | | | | | | | | | | | | | | This enables building with NumPy on Linux and macOS. Windows support should be complete to, but is untested as of now and may need a few tweaks. This contains: - A set of `meson.build` files and related code generation script tweaks, header templates, etc. - One CI job on Linux - Basic docs on using Meson to build NumPy (not yet integrated in the html docs, it's too early for that - this is for early adopters right now). The build should be complete, with the major exception of SIMD support. The full test suite passes. See gh-22546 for the tracking issue with detailed notes on the plan for switching NumPy to Meson as its build system. Co-authored-by: Stefan van der Walt <stefanv@berkeley.edu>
* TST,TYP: Bump mypy to 0.981BvB932022-09-301-1/+1
|
* MAINT,DOC: Remove sphinx-panels in favor of sphinx-designmelissawm2022-08-121-1/+1
|
* Require sphinx 4.3+Jarrod Millman2022-06-241-1/+1
|
* Use new version of breatheJarrod Millman2022-06-241-1/+1
|
* Update sphinxJarrod Millman2022-06-241-3/+3
|
* TST: Reintroduce `typing_extensions` as a test requirementBas van Beek2022-05-261-0/+1
|
* MAINT: loosen Cython pin in environment.ymlRalf Gommers2022-05-221-1/+1
| | | | | | | | | 0.29.30 is the minimum version, but there's no need to pin to that exact version. This is a follow up to gh-21530 [skip azurepipelines]
* MAINT: Update to Cython 0.29.30.Mariusz Felisiak2022-05-191-1/+1
|
* Merge pull request #21430 from BvB93/mypy_0950Charles Harris2022-05-131-1/+1
|\ | | | | TYP: Bump mypy to 0.950
| * TYP: Bump mypy to 0.950Bas van Beek2022-05-031-1/+1
| | | | | | | | 0.942 -> 0.950
* | DEV: Add doxygen to environment.yml (#21502)Bhavuk kalra2022-05-131-0/+1
|/ | | | Fixes sphinx warnings when building docs in gitpod, should make dependency management smoother for conda users.
* MAINT: Update doc requirementsJarrod Millman2022-04-301-3/+3
|
* DEV: Fixed Un-responsive live-preview in gitpod. (#21250)Bhavuk kalra2022-03-301-1/+2
| | | | | | | | | * Replaced existing obselete dependencies. Added Install "esbonio". * Update vscode config * DEV: Block breathe "4.33.0" version of breathe which conflicts with sphinx.ext.graphviz Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* TST: Bump mypy from 0.940 to 0.942Bas van Beek2022-03-251-1/+1
|
* TST: Bump mypy from 0.931 to 0.940Bas van Beek2022-03-111-1/+1
|
* 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]