Skip to content

Commit

Permalink
Version 0.2.0 for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
GDeLaurentis committed Dec 27, 2023
1 parent b7346f8 commit c5de8ed
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2023-12-27

### Added

- Ideal method to generate points of varieties, `Ideal.point_on_variety`.
- Field object (from [lips](https://github.com/GDeLaurentis/lips))
- Field object (moved from [lips](https://github.com/GDeLaurentis/lips))

### Fixed

- Syntax consistency when printing polynomials over rings with single-character variables
- Syntax consistency when printing polynomials over rings with single-character variables (forced `short=0` always).
- Import path in Singular for `poly.lib` is now `polylib.lib`.

## [0.1.3] - 2023-03-02

### Added

- Basic interface functions.
- Primality test.
- Basic interface functions for `Ring`, `QuotientRing` and `Ideal`.
- Primality test, `Ideal.test_primality`.

[unreleased]: https://github.com/GDeLaurentis/syngular/compare/v0.1.3...HEAD
[unreleased]: https://github.com/GDeLaurentis/syngular/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/GDeLaurentis/syngular/compare/v0.1.3...v0.2.0
[0.1.3]: https://github.com/GDeLaurentis/syngular/releases/tag/v0.1.3
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

setup(
name='syngular',
version='v0.1.3',
version='v0.2.0',
license='GNU General Public License v3.0',
description='An Object-Oriented Python Interface to Singular',
long_description=long_description,
long_description_content_type='text/markdown',
author='Giuseppe De Laurentis',
author_email='g.dl@hotmail.it',
url='https://github.com/GDeLaurentis/syngular',
download_url='https://github.com/GDeLaurentis/syngular/archive/v0.1.3.tar.gz',
download_url='https://github.com/GDeLaurentis/syngular/archive/v0.2.0.tar.gz',
keywords=['syngular', 'singular', 'algebraic geometry'],
packages=find_packages(),
install_requires=[
Expand All @@ -25,7 +25,7 @@
'pyadic',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 3 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
Expand Down

0 comments on commit c5de8ed

Please sign in to comment.