Skip to content

Commit

Permalink
fix sphinx doc regex string and metadata names
Browse files Browse the repository at this point in the history
  • Loading branch information
theOehrly committed Oct 31, 2021
1 parent 9bc378a commit ec2bdda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# load version number from file in sources dir without importing
with open('../fastf1/version.py') as vfobj:
vstring = str(vfobj.read())
version = re.search(r"(\d.\d.\d)", vstring)[0]
version = re.search(r"(\d+.\d+.\d+)", vstring)[0]


# project = 'Fast F1'
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ license = MIT
license_files = LICENSE
author = Oehrly
author_email = [email protected]
home-page = https://github.com/theOehrly/Fast-F1
home_page = https://github.com/theOehrly/Fast-F1
description = Wrapper library for F1 data and telemetry API with additional data processing capabilities.
long-description = file: README.rst
long_description = file: README.rst
long_description_content_type = text/x-rst


Expand Down

0 comments on commit ec2bdda

Please sign in to comment.