Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
satella
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
satella
Commits
fddbe159
Commit
fddbe159
authored
1 year ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
Merge branch 'develop' of
https://github.com/piotrmaslanka/satella
into develop
parent
78c92356
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.github/workflows/ci.yml
+9
-11
9 additions, 11 deletions
.github/workflows/ci.yml
CHANGELOG.md
+3
-1
3 additions, 1 deletion
CHANGELOG.md
pyproject.toml
+6
-5
6 additions, 5 deletions
pyproject.toml
satella/__init__.py
+1
-1
1 addition, 1 deletion
satella/__init__.py
with
19 additions
and
18 deletions
.github/workflows/ci.yml
+
9
−
11
View file @
fddbe159
...
@@ -6,7 +6,7 @@ jobs:
...
@@ -6,7 +6,7 @@ jobs:
runs-on
:
ubuntu-20.04
runs-on
:
ubuntu-20.04
strategy
:
strategy
:
matrix
:
matrix
:
python-version
:
[
"
3.6"
,
"
3.7"
,
"
3.8"
,
"
pypy3.9"
,
"
pypy3.10"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
python-version
:
[
"
3.7"
,
"
3.8"
,
"
pypy3.9"
,
"
pypy3.10"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
steps
:
steps
:
-
uses
:
actions/checkout@main
-
uses
:
actions/checkout@main
-
uses
:
actions/setup-python@main
-
uses
:
actions/setup-python@main
...
@@ -22,24 +22,23 @@ jobs:
...
@@ -22,24 +22,23 @@ jobs:
-
name
:
Test everything
-
name
:
Test everything
run
:
pytest -n 8 -vv --cov=satella
run
:
pytest -n 8 -vv --cov=satella
upload-coverage
:
upload-coverage
:
runs-on
:
"
ubuntu-
latest
"
runs-on
:
"
ubuntu-
20.04
"
needs
:
[
"
tests"
]
needs
:
[
"
tests"
]
steps
:
steps
:
-
uses
:
actions/checkout@main
-
uses
:
actions/setup-python@main
-
uses
:
actions/setup-python@main
with
:
with
:
python-version
:
'
3.
10
'
python-version
:
'
3.
8
'
-
run
:
coverage xml
-
run
:
coverage xml
-
uses
:
caffco/code-climate-github-action@v1.0.0
-
uses
:
caffco/code-climate-github-action@v1.0.0
build-project
:
build-project
:
runs-on
:
ubuntu-20.04
runs-on
:
ubuntu-20.04
strategy
:
matrix
:
python-version
:
[
"
3.6.15"
,
"
3.7.1"
,
"
3.8.18"
,
"
pypy3.9"
,
"
pypy3.10"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
steps
:
steps
:
-
uses
:
actions/checkout@main
-
uses
:
actions/setup-python@main
-
uses
:
actions/setup-python@main
name
:
Setup Python
name
:
Setup Python
with
:
with
:
python-version
:
'
$${{
matrix.version
}}
'
python-version
:
'
3.8
'
cache
:
'
pip'
cache
:
'
pip'
-
name
:
Update system
-
name
:
Update system
run
:
|
run
:
|
...
@@ -52,24 +51,23 @@ jobs:
...
@@ -52,24 +51,23 @@ jobs:
echo -e '__version__ = "' > satella/__init__.py
echo -e '__version__ = "' > satella/__init__.py
echo -e '${{ github.event.release.tag_name }}' >> satella/__init__.py
echo -e '${{ github.event.release.tag_name }}' >> satella/__init__.py
echo '"' >> satella/__init__.py
echo '"' >> satella/__init__.py
python -v
-
name
:
Build
-
name
:
Build
run
:
python -m build .
run
:
python -m build .
-
name
:
Archive production artifacts
-
name
:
Archive production artifacts
uses
:
actions/upload-artifact@ma
ster
uses
:
actions/upload-artifact@ma
in
with
:
with
:
name
:
builds
name
:
builds
path
:
|
path
:
|
dist
dist
send-to-pypi
:
send-to-pypi
:
runs-on
:
"
ubuntu-
latest
"
runs-on
:
"
ubuntu-
20.04
"
needs
:
[
"
build-project"
,
"
tests"
]
needs
:
[
"
build-project"
,
"
tests"
]
if
:
github.event_name == 'push' && contains(github.ref, 'refs/tags/')
if
:
github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps
:
steps
:
-
uses
:
actions/setup-python@main
-
uses
:
actions/setup-python@main
name
:
Setup Python
name
:
Setup Python
with
:
with
:
python-version
:
'
3.
10
'
python-version
:
'
3.
8
'
cache
:
'
pip'
cache
:
'
pip'
-
name
:
Install Twine
-
name
:
Install Twine
run
:
pip install twine
run
:
pip install twine
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
3
−
1
View file @
fddbe159
# v2.2
4.3
# v2.2
5.0
Build system
Build system
============
============
*
Python 3.6 support dropped as it does not emply pyproject.toml, which is necessary
to build this
*
removed Docker unit tests
*
removed Docker unit tests
This diff is collapsed.
Click to expand it.
pyproject.toml
+
6
−
5
View file @
fddbe159
...
@@ -6,16 +6,17 @@ readme = {file = "README.md", content-type="text/markdown"}
...
@@ -6,16 +6,17 @@ readme = {file = "README.md", content-type="text/markdown"}
authors
=
[
authors
=
[
{name
=
"Piotr Maślanka"
,
email
=
"pmaslanka@smok.co"
}
{name
=
"Piotr Maślanka"
,
email
=
"pmaslanka@smok.co"
}
]
]
requires-python
=
">
=
3.
5
"
requires-python
=
">
=
3.
7
"
license
=
{
text
=
"MIT License"
}
license
=
{
text
=
"MIT License"
}
keywords
=
[
"ha"
,
"high availability"
,
"scalable"
,
"scalability"
,
"server"
,
"metrics"
,
"tracing"
,
"instrumentation"
]
keywords
=
[
"ha"
,
"high availability"
,
"scalable"
,
"scalability"
,
"server"
,
"metrics"
,
"tracing"
,
"instrumentation"
]
classifiers
=
[
classifiers
=
[
"Programming Language :: Python"
,
"Programming Language :: Python"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
"Programming Language :: Python :: 3.7"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.9"
,
"Programming Language :: Python :: 3.9"
,
"Programming Language :: Python :: 3.10"
,
"Programming Language :: Python :: 3.11"
,
"Programming Language :: Python :: 3.12"
,
"Programming Language :: Python :: Implementation :: CPython"
,
"Programming Language :: Python :: Implementation :: CPython"
,
"Programming Language :: Python :: Implementation :: PyPy"
,
"Programming Language :: Python :: Implementation :: PyPy"
,
"Operating System :: OS Independent"
,
"Operating System :: OS Independent"
,
...
@@ -29,8 +30,8 @@ dependencies = ["psutil"]
...
@@ -29,8 +30,8 @@ dependencies = ["psutil"]
version
=
{
attr
=
"satella.__version__"
}
version
=
{
attr
=
"satella.__version__"
}
[project.optional-dependencies]
[project.optional-dependencies]
dev
=
[
"pylint"
,
"pyyaml"
,
"toml"
,
"requests"
,
"opentracing"
,
"codeclimate-test-reporter"
]
dev
=
[
"pylint"
,
"toml"
,
"requests"
,
"codeclimate-test-reporter"
]
test
=
[
"pytest-cov"
,
"pytest-xdist"
,
"pytest"
,
"pytest-forked"
,
"pluggy"
,
"py"
,
"coverage
<4.4
"
]
test
=
[
"pytest-cov"
,
"pytest-xdist"
,
"pytest"
,
"pytest-forked"
,
"pluggy"
,
"py"
,
"coverage"
]
extras
=
[
"requests"
,
"pyyaml"
,
"toml"
,
"ujson"
,
"cassandra-driver"
,
"opentracing"
]
extras
=
[
"requests"
,
"pyyaml"
,
"toml"
,
"ujson"
,
"cassandra-driver"
,
"opentracing"
]
...
...
This diff is collapsed.
Click to expand it.
satella/__init__.py
+
1
−
1
View file @
fddbe159
__version__
=
'
2.2
4.3a2
'
__version__
=
'
2.2
5.0a1
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment