Skip to content

CI: update container images #168

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

Merged
merged 4 commits into from
Jan 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build-docs:
working_directory: ~/repo
docker:
- image: cimg/python:3.8
- image: cimg/python:3.10

steps:
- checkout
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
deploy-docs:
working_directory: ~/repo
docker:
- image: circleci/python:3.8.5-buster
- image: cimg/python:3.10
steps:
- checkout

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
max-parallel: 12
matrix:
os: [Ubuntu-20.04, macOS-latest]
os: [Ubuntu-latest, macOS-latest]
include:
- python-version: '3.8'
toxenv: py38-test-oldestdeps
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2005-2020, NumPy Developers.
Copyright (c) 2005-2023, NumPy Developers.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,3 @@ statsmodels
imageio
# For supporting .md-based notebooks
jupytext
# Temporary fix for lexer errors
ipython!=8.7.0
3 changes: 2 additions & 1 deletion site/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@


# -- Project information -----------------------------------------------------
from datetime import date

project = 'NumPy tutorials'
copyright = '2020, the NumPy community'
copyright = f'2020-{date.today().year}, the NumPy community'
author = 'the NumPy community'


Expand Down