Skip to content

Commit

Permalink
Merge pull request #254 from theochem/update_yaml
Browse files Browse the repository at this point in the history
Use `qc-grids` as temporary package name in PyPI
  • Loading branch information
FanwangM authored Oct 31, 2024
2 parents e9aa142 + 985a967 commit 8f34402
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

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

jobs:
build:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- master
tags-ignore:
- '**'
pull_request:
Expand All @@ -15,13 +16,14 @@ jobs:

strategy:
matrix:
# os: ["ubuntu-latest", "windows-latest", "macos-latest"]
os: ["ubuntu-latest", "windows-latest"]
py: ["3.7", "3.8", "3.9", "3.10", "3.11"]
py: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Install dependencies for testing
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Grid

[![Python Version](https://img.shields.io/badge/python-3.7%2B-blue.svg)](https://docs.python.org/3/whatsnew/3.7.html)
[![Python Version](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://docs.python.org/3/whatsnew/3.9.html)
[![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/)
[![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)
[![GitHub contributors](https://img.shields.io/github/contributors/theochem/grid.svg)](https://github.com/theochem/grid/graphs/contributors)
Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ requires = ["setuptools>=65.0", "setuptools_scm[toml]>=7.1.0"]
build-backend = "setuptools.build_meta"

[project]
name = "qc-grid"
name = "qc-grids"
authors = [
{ name="QC-Devs Community", email="qcdevs@gmail.com" },
]
description = "Grid performs numerical integration, interpolation and differentiation."
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.7"
requires-python = ">=3.9"
classifiers = [
'Development Status :: 0 - Released',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
Expand All @@ -21,11 +21,10 @@ classifiers = [
'Intended Audience :: Science/Research',
"Intended Audience :: Education",
"Natural Language :: English",
'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.16",
Expand Down

0 comments on commit 8f34402

Please sign in to comment.