Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit e465b02

Browse files
authored
Merge pull request #44 from catalyst-cooperative/dev
Update to allow use of Python 3.11
2 parents 0aa9dab + 9b58898 commit e465b02

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/tox-pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10"]
10+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1111
fail-fast: false
1212

1313
steps:

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ channels:
55
dependencies:
66
# Packages required for setting up the environment
77
- pip>=21,<23
8-
- python>=3.8,<3.11
9-
- setuptools<62
8+
- python>=3.8,<3.12
9+
- setuptools<66
1010

1111
# Use pip to install the package defined by this repo for development:
1212
- pip:

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
[build-system]
2-
requires = ["setuptools<62", "pip>=21,<23", "wheel", "setuptools_scm"]
2+
requires = [
3+
"setuptools<66",
4+
"setuptools_scm[toml]>=3.5.0"
5+
]
36

47
[tool.setuptools_scm]
58

69
[tool.black]
710
line-length = 88
8-
target-version = ["py38", "py39", "py310"]
11+
target-version = ["py38", "py39", "py310", "py311"]
912
include = "\\.pyi?$"
1013

1114
[tool.isort]

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
license="MIT",
3131
# Fill in search keywords that users might use to find the package
3232
keywords=["intake", "sqlite", "data catalog"],
33-
python_requires=">=3.8,<3.11",
33+
python_requires=">=3.8,<3.12",
3434
# In order for the dependabot to update versions, they must be listed here.
3535
# Use the format "pkg_name>=x,<y"
3636
install_requires=[
@@ -95,6 +95,7 @@
9595
"Programming Language :: Python :: 3.8",
9696
"Programming Language :: Python :: 3.9",
9797
"Programming Language :: Python :: 3.10",
98+
"Programming Language :: Python :: 3.11",
9899
],
99100
# Directory to search recursively for __init__.py files defining Python packages
100101
packages=find_packages("src"),

0 commit comments

Comments
 (0)