Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snakehouse
Manage
Activity
Members
Labels
Plan
Issues
0
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
snakehouse
Commits
51da5eac
Unverified
Commit
51da5eac
authored
1 year ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
tests for all versions of Python support is claimed for
parent
9f9ebdac
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.github/workflows/ci.yml
+22
-0
22 additions, 0 deletions
.github/workflows/ci.yml
.travis.yml
+0
-28
0 additions, 28 deletions
.travis.yml
CHANGELOG.md
+2
-1
2 additions, 1 deletion
CHANGELOG.md
setup.cfg
+4
-2
4 additions, 2 deletions
setup.cfg
with
28 additions
and
31 deletions
.github/workflows/ci.yml
0 → 100644
+
22
−
0
View file @
51da5eac
name
:
CI
run-name
:
${{ github.actor }}
on
:
[
push
]
jobs
:
tests
:
runs-on
:
ubuntu-20.04
strategy
:
matrix
:
python-version
:
[
"
3.5"
,
"
3.6"
,
"
3.7"
,
"
3.8"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
steps
:
-
uses
:
actions/checkout@main
-
uses
:
actions/setup-python@main
with
:
python-version
:
${{ matrix.python-version }}
cache
:
pip
-
name
:
Install everything
run
:
|
pip install -U pip setuptools wheel disttools packaging pyproject.toml
-
name
:
Test
run
:
python setup.py test
env
:
DEBUG
:
"
1"
"
This diff is collapsed.
Click to expand it.
.travis.yml
deleted
100644 → 0
+
0
−
28
View file @
9f9ebdac
language
:
python
stages
:
-
name
:
test
-
name
:
deploy
if
:
tag is present
cache
:
pip
before_script
:
-
python setup.py install
script
:
-
cd example
-
DEBUG=1 python setup.py test
jobs
:
include
:
-
stage
:
test
python
:
"
3.5"
-
stage
:
test
python
:
"
3.8"
-
stage
:
test
python
:
"
3.9"
-
stage
:
test
python
:
"
pypy3.5"
-
stage
:
deploy
python
:
"
3.8"
script
:
-
pip install wheel twine
-
python setup.py bdist bdist_wheel
-
twine upload -u $PYPI_USER -p $PYPI_PWD dist/*
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
2
−
1
View file @
51da5eac
# v1.6
# v1.6
*
_TBA_
*
certified for Python 3.11 and 3.12
*
CI moved to GitHub Actions
# v1.5
# v1.5
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
4
−
2
View file @
51da5eac
...
@@ -2,12 +2,12 @@
...
@@ -2,12 +2,12 @@
[metadata]
[metadata]
name
= snakehouse
name
= snakehouse
keywords
= cython, extension, multiple, pyx
keywords
= cython, extension, multiple, pyx
version
= 1.6a
1
version
= 1.6a
2
long-description
= file: README.md
long-description
= file: README.md
long-description-content-type
= text/markdown; charset=UTF-8
long-description-content-type
= text/markdown; charset=UTF-8
license_files
= LICENSE
license_files
= LICENSE
author
= Piotr Maślanka
author
= Piotr Maślanka
author_email
= p
iotrm
@smok.co
author_email
= p
maslanka
@smok.co
description
= Utilities for packing multiple pyx files into a single Cython extension
description
= Utilities for packing multiple pyx files into a single Cython extension
url
= https://github.com/smok-serwis/snakehouse
url
= https://github.com/smok-serwis/snakehouse
project-urls
=
project-urls
=
...
@@ -21,6 +21,8 @@ classifier =
...
@@ -21,6 +21,8 @@ classifier =
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.10
Programming
Language :: Python :: 3.11
Programming
Language :: Python :: 3.12
Programming
Language :: Python :: Implementation :: CPython
Programming
Language :: Python :: Implementation :: CPython
Operating
System :: OS Independent
Operating
System :: OS Independent
Development
Status :: 5 - Production/Stable
Development
Status :: 5 - Production/Stable
...
...
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