Skip to content

Commit 7a351ec

Browse files
committed
Remove beeware package configuration.
1 parent 2f189f0 commit 7a351ec

File tree

14 files changed

+27
-358
lines changed

14 files changed

+27
-358
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/config-file-deps-bump.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/pre-commit-update.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 0 additions & 58 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.readthedocs.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ build:
1313
python: "3.12"
1414
jobs:
1515
pre_build:
16+
- pip install -r requirements.dev.txt
1617
- tox -e docs-lint
1718

1819
# Build documentation in the docs/ directory with Sphinx
@@ -28,8 +29,4 @@ formats:
2829
# Optionally declare the Python requirements required to build your docs
2930
python:
3031
install:
31-
- method: pip
32-
path: .
33-
extra_requirements:
34-
- dev
35-
- docs
32+
- requirements: docs/requirements.docs.txt

AUTHORS

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="https://beeware.org/static/images/brutus-270.png" alt="BeeWare Logo" height="72">
33
</a>
44

5-
# BeeWare
5+
# BeeWare Tutorial
66

77
[![Python Versions](https://img.shields.io/pypi/pyversions/beeware.svg)](https://pypi.python.org/pypi/beeware)
88
[![PyPI Version](https://img.shields.io/pypi/v/beeware.svg)](https://pypi.python.org/pypi/beeware)
@@ -14,8 +14,7 @@
1414
BeeWare is a collection of tools and libraries for building and
1515
distributing native applications in Python.
1616

17-
For an introduction to the full BeeWare suite, we recommend running the
18-
[BeeWare Tutorial](https://tutorial.beeware.org/).
17+
You can view this tutorial [here](https://tutorial.beeware.org/).
1918

2019
## Community
2120

@@ -24,17 +23,15 @@ You can talk to the BeeWare community through:
2423
- [@beeware@fosstodon.org on Mastodon](https://fosstodon.org/@beeware)
2524
- [Discord](https://beeware.org/bee/chat/)
2625

27-
We foster a welcoming and respectful community as described in our
28-
[BeeWare Community Code of
29-
Conduct](http://beeware.org/community/behavior/).
26+
We foster a welcoming and respectful community as described in our [BeeWare
27+
Community Code of Conduct](http://beeware.org/community/behavior/).
3028

3129
## Contributing
3230

3331
If you experience problems with BeeWare, [log them on
34-
GitHub](https://github.com/beeware/beeware/issues). If you want to
35-
contribute code, please [fork the
36-
code](https://github.com/beeware/beeware) and [submit a pull
37-
request](https://github.com/beeware/beeware/pulls).
32+
GitHub](https://github.com/beeware/beeware/issues). If you want to contribute
33+
code, please [fork the code](https://github.com/beeware/beeware) and [submit a
34+
pull request](https://github.com/beeware/beeware/pulls).
3835

3936
### Translations
4037

docs/conf.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import os
1313
import sys
1414
from datetime import datetime
15-
from importlib.metadata import version as metadata_version
1615

1716
# If extensions (or modules to document with autodoc) are in another directory,
1817
# add these directories to sys.path here. If the directory is relative to the
@@ -48,16 +47,16 @@
4847

4948
# General information about the project.
5049
project = "BeeWare"
51-
copyright = f"{datetime.now().year}, Russell Keith-Magee"
50+
copyright = "Russell Keith-Magee"
5251

5352
# The version info for the project you're documenting, acts as replacement for
5453
# |version| and |release|, also used in various other places throughout the
5554
# built documents.
5655
#
5756
# The full version, including alpha/beta/rc tags.
58-
release = metadata_version("beeware")
57+
release = datetime.now().strftime("%Y-%m-%d")
5958
# The short X.Y version
60-
version = ".".join(release.split(".")[:2])
59+
version = release
6160

6261
autoclass_content = "both"
6362

0 commit comments

Comments
 (0)