Skip to content

Commit

Permalink
Build 0.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Robinson authored and Andrew Robinson committed May 28, 2024
1 parent 896129a commit 1eac25f
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 6 deletions.
2 changes: 1 addition & 1 deletion athlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def __wma_delay__():
from .bulgarian_score import score as bulgarian_score
from .athlon_score import performance as athlon_performance_needed

__version__ = u'0.7.9'
__version__ = u'0.7.10'

from .exceptions import RuleViolation

Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@

# General information about the project.
project = u'athlib'
copyright = u'2017-24, Andy Robinson, Robin Becker, Llewellyn Brunsdon-Haland, James Davis and others'
author = u'Andy Robinson, Robin Becker, Llewellyn Brunsdon-Haland, James Davis and others'
copyright = u'2017-24, Andy Robinson, Robin Becker, Llewellyn Brunsdon-Haland, James Davis, Thor Gjesdal and others'
author = u'Andy Robinson, Robin Becker, Llewellyn Brunsdon-Haland, James Davis, Thor Gjesdal and others'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'0.7.9'
version = u'0.7.10'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "athlib",
"version": "0.7.9",
"version": "0.7.10",
"description": "Athletics Library",
"main": "./index.js",
"scripts": {
Expand Down
24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[project]
name = "athlib"
version = "0.7.10"
authors = [
{ name="Andy Robinson and others", email="[email protected]" },
]
description = "Utilities for track and field athletics"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]

license = {file = "LICENSE"}

[project.urls]
Homepage = "https://github.com/openath/athlib"
Issues = "https://github.com/openath/athlib/issues"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ def find_json(top,drop=1,force=False):
for p,D,F in os.walk(top):
for f in F:
fn = os.path.join(p,f)
with open(fn,'rb') as j:
if '__pycache__' in fn:
continue
print("scanning", fn)
with open(fn,'r') as j:
json = j.read()
if force or schema_marker_re.search(json):
if drop:
Expand Down

0 comments on commit 1eac25f

Please sign in to comment.