Skip to content

Commit 8f34402

Browse files
authored
Merge pull request #254 from theochem/update_yaml
Use `qc-grids` as temporary package name in PyPI
2 parents e9aa142 + 985a967 commit 8f34402

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

.github/workflows/pypi_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
env:
2020
# The name of the package to be published to PyPI and TestPyPI.
21-
PYPI_NAME: qc-grid
21+
PYPI_NAME: qc-grids
2222

2323
jobs:
2424
build:

.github/workflows/pytest.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- master
78
tags-ignore:
89
- '**'
910
pull_request:
@@ -15,13 +16,14 @@ jobs:
1516

1617
strategy:
1718
matrix:
19+
# os: ["ubuntu-latest", "windows-latest", "macos-latest"]
1820
os: ["ubuntu-latest", "windows-latest"]
19-
py: ["3.7", "3.8", "3.9", "3.10", "3.11"]
21+
py: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2022

2123
steps:
22-
- uses: "actions/checkout@v3"
24+
- uses: "actions/checkout@v4"
2325
- name: Setup python for test ${{ matrix.py }}
24-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v5
2527
with:
2628
python-version: ${{ matrix.py }}
2729
- name: Install dependencies for testing

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Grid
22

3-
[![Python Version](https://img.shields.io/badge/python-3.7%2B-blue.svg)](https://docs.python.org/3/whatsnew/3.7.html)
3+
[![Python Version](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://docs.python.org/3/whatsnew/3.9.html)
44
[![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/)
55
[![GitHub Actions CI Tox Status](https://github.com/theochem/grid/actions/workflows/pytest.yaml/badge.svg)](https://github.com/theochem/grid/actions/workflows/pytest.yaml)
66
[![GitHub contributors](https://img.shields.io/github/contributors/theochem/grid.svg)](https://github.com/theochem/grid/graphs/contributors)

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ requires = ["setuptools>=65.0", "setuptools_scm[toml]>=7.1.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "qc-grid"
6+
name = "qc-grids"
77
authors = [
88
{ name="QC-Devs Community", email="[email protected]" },
99
]
1010
description = "Grid performs numerical integration, interpolation and differentiation."
1111
readme = "README.md"
1212
license = {text = "GPL-3.0-or-later"}
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.9"
1414
classifiers = [
15-
'Development Status :: 0 - Released',
15+
'Development Status :: 5 - Production/Stable',
1616
'Environment :: Console',
1717
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
1818
'Operating System :: POSIX :: Linux',
@@ -21,11 +21,10 @@ classifiers = [
2121
'Intended Audience :: Science/Research',
2222
"Intended Audience :: Education",
2323
"Natural Language :: English",
24-
'Programming Language :: Python :: 3.7',
25-
"Programming Language :: Python :: 3.8",
2624
"Programming Language :: Python :: 3.9",
2725
"Programming Language :: Python :: 3.10",
2826
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
2928
]
3029
dependencies = [
3130
"numpy>=1.16",

0 commit comments

Comments
 (0)