-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BLD: Use modern jupyter_packaging and jupyterlab (#111)
* BLD: Use modern jupyter_packaging and jupyterlab * Update setup.py [ci skip] * Update ci_tests.yml [ci skip] * Create dependabot.yml * Update ci_tests.yml * Bump jupyterlab/builder as suggested by dhomeier * Add back really old Python versions because Maarten wanted them back [ci skip] * Update ci_tests.yml * Update pyproject.toml Co-authored-by: Derek Homeier <[email protected]> * Update js/package.json Co-authored-by: Iisakki Rotko <[email protected]> * Remove Python 3.6 part 1 [ci skip] * Remove Python 3.6 from CI * Fix mac runner bug by bumping OpenAstronomy pin * Update ci_tests.yml * py37 on linux now * Use old ubuntu for py37 * Hands * Update ci_tests.yml --------- Co-authored-by: Derek Homeier <[email protected]> Co-authored-by: Iisakki Rotko <[email protected]>
- Loading branch information
1 parent
016df3d
commit 5c8af3b
Showing
5 changed files
with
53 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
groups: | ||
actions: | ||
patterns: | ||
- "*" | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: ".github/workflows" # Location of package manifests | ||
schedule: | ||
interval: "monthly" | ||
groups: | ||
actions: | ||
patterns: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[build-system] | ||
requires = ["jupyter-packaging~=0.7.12", | ||
"jupyterlab~=3.0.0", | ||
requires = ["jupyter_packaging>=0.10.6", | ||
"jupyterlab>=3.6", | ||
"setuptools>=40.8.0", | ||
"wheel"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters