Skip to content

Commit

Permalink
Add python 3.12 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe authored Mar 5, 2024
1 parent 5a1d65b commit 960f8d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [ '3.8', '3.9', '3.10', '3.11']
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
with:
Expand Down
18 changes: 8 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,15 @@
with open("README.md", "rt") as fh:
long_description = fh.read()

dependencies = [
"chia_rs>=0.2.13",
"importlib_metadata~=6.11.0"
]
dependencies = ["chia_rs>=0.2.13", "importlib_metadata~=6.11.0"]

dev_dependencies = [
"clvm_tools>=0.4.4",
"pytest",
]
dev_dependencies = ["clvm_tools>=0.4.4", "pytest", "setuptools"]

setup(
name="clvm",
packages=["clvm",],
packages=[
"clvm",
],
author="Chia Network, Inc.",
author_email="hello@chia.net",
url="https://github.com/Chia-Network/clvm",
Expand All @@ -37,7 +33,9 @@
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
],
extras_require=dict(dev=dev_dependencies,),
extras_require=dict(
dev=dev_dependencies,
),
project_urls={
"Bug Reports": "https://github.com/Chia-Network/clvm",
"Source": "https://github.com/Chia-Network/clvm",
Expand Down

0 comments on commit 960f8d1

Please sign in to comment.